Skip to content

Commit

Permalink
Merge pull request JuliaLang#14247 from eschnett/eschnett/move
Browse files Browse the repository at this point in the history
Remove superfluous std::move
  • Loading branch information
JeffBezanson committed Dec 4, 2015
2 parents 9e95af3 + 1c50ddc commit d12dd01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6345,7 +6345,7 @@ extern "C" void jl_init_codegen(void)
#endif

#ifdef LLVM36
EngineBuilder eb(std::move(std::unique_ptr<Module>(engine_module)));
EngineBuilder eb((std::unique_ptr<Module>(engine_module)));
#else
EngineBuilder eb(engine_module);
#endif
Expand Down

0 comments on commit d12dd01

Please sign in to comment.