diff options
Diffstat (limited to 'llvm/examples/ParallelJIT')
-rw-r--r-- | llvm/examples/ParallelJIT/ParallelJIT.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp index 9c148a08017..64784622076 100644 --- a/llvm/examples/ParallelJIT/ParallelJIT.cpp +++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp @@ -259,7 +259,7 @@ int main() { LLVMContext Context; // Create some module to put our function into it. - std::unique_ptr<Module> Owner = make_unique<Module>("test", Context); + std::unique_ptr<Module> Owner = std::make_unique<Module>("test", Context); Module *M = Owner.get(); Function* add1F = createAdd1( M ); |