diff options
author | Logan Chien <tzuhsiang.chien@gmail.com> | 2016-08-26 02:06:27 +0800 |
---|---|---|
committer | Logan Chien <tzuhsiang.chien@gmail.com> | 2016-08-26 02:06:27 +0800 |
commit | eb15a35ecbe2acd3437cff474686df8fde9bf42a (patch) | |
tree | 49fed51a2d20c30ce4377edbab83c9251d399388 /src/passes/LowerInt64.cpp | |
parent | e168e2b9b6dd099c97c7ec313c3062d80fa1a9a8 (diff) | |
download | binaryen-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.cpp | 2 |
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); } |