diff options
Diffstat (limited to 'llvm/examples/LLJITExamples/ExampleModules.h')
-rw-r--r-- | llvm/examples/LLJITExamples/ExampleModules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/LLJITExamples/ExampleModules.h b/llvm/examples/LLJITExamples/ExampleModules.h index aa6b2b9d2ea..ae0089fd9dd 100644 --- a/llvm/examples/LLJITExamples/ExampleModules.h +++ b/llvm/examples/LLJITExamples/ExampleModules.h @@ -35,7 +35,7 @@ parseExampleModule(llvm::StringRef Source, llvm::StringRef Name) { using namespace llvm; using namespace llvm::orc; - auto Ctx = llvm::make_unique<LLVMContext>(); + auto Ctx = std::make_unique<LLVMContext>(); SMDiagnostic Err; auto M = parseIR(MemoryBufferRef(Source, Name), Err, *Ctx); |