summaryrefslogtreecommitdiff
path: root/src/tools/wasm-reduce.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm-reduce.cpp')
-rw-r--r--src/tools/wasm-reduce.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp
index 078eca648..f3f252477 100644
--- a/src/tools/wasm-reduce.cpp
+++ b/src/tools/wasm-reduce.cpp
@@ -352,7 +352,7 @@ struct Reducer
}
void loadWorking() {
- module = make_unique<Module>();
+ module = std::make_unique<Module>();
ModuleReader reader;
try {
reader.read(working, *module);
@@ -371,7 +371,7 @@ struct Reducer
// Apply features the user passed on the commandline.
toolOptions.applyFeatures(*module);
- builder = make_unique<Builder>(*module);
+ builder = std::make_unique<Builder>(*module);
setModule(module.get());
}