aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/lldb/source/API/Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/lldb/source/API/Utils.h')
-rw-r--r--contrib/llvm-project/lldb/source/API/Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/lldb/source/API/Utils.h b/contrib/llvm-project/lldb/source/API/Utils.h
index b1975e5421dd..ed81534d2d12 100644
--- a/contrib/llvm-project/lldb/source/API/Utils.h
+++ b/contrib/llvm-project/lldb/source/API/Utils.h
@@ -16,7 +16,7 @@ namespace lldb_private {
template <typename T> std::unique_ptr<T> clone(const std::unique_ptr<T> &src) {
if (src)
- return llvm::make_unique<T>(*src);
+ return std::make_unique<T>(*src);
return nullptr;
}