summaryrefslogtreecommitdiff
path: root/src/tools/wasm2js.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm2js.cpp')
-rw-r--r--src/tools/wasm2js.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/wasm2js.cpp b/src/tools/wasm2js.cpp
index 79eee56a0..1c2606b6a 100644
--- a/src/tools/wasm2js.cpp
+++ b/src/tools/wasm2js.cpp
@@ -981,14 +981,14 @@ int main(int argc, const char* argv[]) {
if (options.debug) {
std::cerr << "s-parsing..." << std::endl;
}
- sexprParser = make_unique<SExpressionParser>(input.data());
+ sexprParser = std::make_unique<SExpressionParser>(input.data());
root = sexprParser->root;
if (options.debug) {
std::cerr << "w-parsing..." << std::endl;
}
- sexprBuilder =
- make_unique<SExpressionWasmBuilder>(wasm, *(*root)[0], options.profile);
+ sexprBuilder = std::make_unique<SExpressionWasmBuilder>(
+ wasm, *(*root)[0], options.profile);
}
} catch (ParseException& p) {
p.dump(std::cerr);