summaryrefslogtreecommitdiff
path: root/src/passes/LowerIfElse.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/LowerIfElse.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/LowerIfElse.cpp')
-rw-r--r--src/passes/LowerIfElse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/LowerIfElse.cpp b/src/passes/LowerIfElse.cpp
index 7bdb2f419..b566e8207 100644
--- a/src/passes/LowerIfElse.cpp
+++ b/src/passes/LowerIfElse.cpp
@@ -38,7 +38,7 @@ struct LowerIfElse : public WalkerPass<PostWalker<LowerIfElse, Visitor<LowerIfEl
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);
}