diff options
author | Thomas Lively <tlively@google.com> | 2023-03-31 15:20:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 15:20:57 -0700 |
commit | 79c94ea62a665beccf12a7b93b23599ae04937dd (patch) | |
tree | 16467120420b3b6f1ce5682af62346db391fa1a1 /src/wasm/wasm-io.cpp | |
parent | c2c8062bfe6bf65a4a41a617241a8f32b50387e6 (diff) | |
download | binaryen-79c94ea62a665beccf12a7b93b23599ae04937dd.tar.gz binaryen-79c94ea62a665beccf12a7b93b23599ae04937dd.tar.bz2 binaryen-79c94ea62a665beccf12a7b93b23599ae04937dd.zip |
[NFC] Remove our bespoke `make_unique` implementation (#5613)
This code predates our adoption of C++14 and can now be removed in favor of
`std::make_unique`, which should be more efficient.
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r-- | src/wasm/wasm-io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index 90f267e9b..b544046f6 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -68,7 +68,7 @@ void ModuleReader::readBinaryData(std::vector<char>& input, parser.setDWARF(DWARF); parser.setSkipFunctionBodies(skipFunctionBodies); if (sourceMapFilename.size()) { - sourceMapStream = make_unique<std::ifstream>(); + sourceMapStream = std::make_unique<std::ifstream>(); sourceMapStream->open(sourceMapFilename); parser.setDebugLocations(sourceMapStream.get()); } @@ -156,7 +156,7 @@ void ModuleWriter::writeBinary(Module& wasm, Output& output) { } std::unique_ptr<std::ofstream> sourceMapStream; if (sourceMapFilename.size()) { - sourceMapStream = make_unique<std::ofstream>(); + sourceMapStream = std::make_unique<std::ofstream>(); sourceMapStream->open(sourceMapFilename); writer.setSourceMap(sourceMapStream.get(), sourceMapUrl); } |