diff options
Diffstat (limited to 'source/API/Utils.h')
-rw-r--r-- | source/API/Utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/API/Utils.h b/source/API/Utils.h index b1975e5421ddf..ed81534d2d12c 100644 --- a/source/API/Utils.h +++ b/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; } |