From: Justin Bogner Date: Fri, 1 Sep 2017 17:26:24 +0000 (+0000) Subject: Specify the namespace in llvm::make_unique to fix the windows build X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14e931db543b58054d9b6cb6e061c8101c6134f5;p=llvm Specify the namespace in llvm::make_unique to fix the windows build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312341 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp b/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp index 8b2cfdfa7d2..1d16376bb87 100644 --- a/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp +++ b/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp @@ -88,7 +88,7 @@ std::unique_ptr createISelMutator() { new InjectorIRStrategy(InjectorIRStrategy::getDefaultOps())); Strategies.emplace_back(new InstDeleterIRStrategy()); - return make_unique(std::move(Types), std::move(Strategies)); + return llvm::make_unique(std::move(Types), std::move(Strategies)); } extern "C" LLVM_ATTRIBUTE_USED size_t LLVMFuzzerCustomMutator(