diff options
author | Thomas Munro <tmunro@postgresql.org> | 2019-08-25 13:54:48 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2019-08-25 14:46:29 +1200 |
commit | 54ff1c34f11b3f899be66fa55f85dbace83be741 (patch) | |
tree | ad1de1f95a694aa8aee660bb62b8d4d26d209e8a /src | |
parent | 08e68825c1d6cc87606e592a8080fece5da3fd31 (diff) | |
download | postgresql-54ff1c34f11b3f899be66fa55f85dbace83be741.tar.gz postgresql-54ff1c34f11b3f899be66fa55f85dbace83be741.zip |
Don't rely on llvm::make_unique.
Bleeding-edge LLVM has stopped supplying replacements for various
C++14 library features, for people on older C++ versions. Since we're
not ready to require C++14 yet, just use plain old new instead of
make_unique. As revealed by buildfarm animal seawasp.
Back-patch to 11.
Reviewed-by: Andres Freund
Discussion: https://postgr.es/m/CA%2BhUKGJWG7unNqmkxg7nC5o3o-0p2XP6co4r%3D9epqYMm8UY4Mw%40mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/jit/llvm/llvmjit_inline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/jit/llvm/llvmjit_inline.cpp b/src/backend/jit/llvm/llvmjit_inline.cpp index 0513998b021..688edfe5254 100644 --- a/src/backend/jit/llvm/llvmjit_inline.cpp +++ b/src/backend/jit/llvm/llvmjit_inline.cpp @@ -174,7 +174,7 @@ llvm_inline(LLVMModuleRef M) static std::unique_ptr<ImportMapTy> llvm_build_inline_plan(llvm::Module *mod) { - std::unique_ptr<ImportMapTy> globalsToInline = llvm::make_unique<ImportMapTy>(); + std::unique_ptr<ImportMapTy> globalsToInline(new ImportMapTy()); FunctionInlineStates functionStates; InlineWorkList worklist; |