summaryrefslogtreecommitdiff
path: root/src/passes/LowerInt64.cpp
diff options
context:
space:
mode:
authorLogan Chien <tzuhsiang.chien@gmail.com>2016-08-26 02:06:27 +0800
committerLogan Chien <tzuhsiang.chien@gmail.com>2016-08-26 02:06:27 +0800
commiteb15a35ecbe2acd3437cff474686df8fde9bf42a (patch)
tree49fed51a2d20c30ce4377edbab83c9251d399388 /src/passes/LowerInt64.cpp
parente168e2b9b6dd099c97c7ec313c3062d80fa1a9a8 (diff)
downloadbinaryen-eb15a35ecbe2acd3437cff474686df8fde9bf42a.tar.gz
binaryen-eb15a35ecbe2acd3437cff474686df8fde9bf42a.tar.bz2
binaryen-eb15a35ecbe2acd3437cff474686df8fde9bf42a.zip
Replace std::unique<T>(new T()) with make_unique<T>().
This commit modernize the code base by replacing: std::unique_ptr<T>(new T(...)) with: make_unique<T>(...) or: wasm::make_unique<T>(...) This is a step closer to adopt C++14 std::make_unique<T>(...).
Diffstat (limited to 'src/passes/LowerInt64.cpp')
-rw-r--r--src/passes/LowerInt64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/LowerInt64.cpp b/src/passes/LowerInt64.cpp
index b59b1d5fc..69f6d5ae9 100644
--- a/src/passes/LowerInt64.cpp
+++ b/src/passes/LowerInt64.cpp
@@ -35,7 +35,7 @@ struct LowerInt64 : public Pass {
void prepare(PassRunner* runner, Module *module) override {
allocator = runner->allocator;
- namer = std::unique_ptr<NameManager>(new NameManager());
+ namer = make_unique<NameManager>();
namer->run(runner, module);
}