summaryrefslogtreecommitdiff
path: root/src/unique_ptr.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2025-07-08 13:46:08 +1000
committerMaxime Coste <mawww@kakoune.org>2025-07-08 13:46:08 +1000
commit79f58216e623deb6e09f2ec3fa635ee22b1d81ce (patch)
tree2b1b27d0d32b1029e0e8b77df68f7d9f896c5d92 /src/unique_ptr.hh
parentde1516a8d822f72bddfb158126b6e609afc63c64 (diff)
Tentative fix for CI
Diffstat (limited to 'src/unique_ptr.hh')
-rw-r--r--src/unique_ptr.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unique_ptr.hh b/src/unique_ptr.hh
index 86f9ac86..afe0e2d8 100644
--- a/src/unique_ptr.hh
+++ b/src/unique_ptr.hh
@@ -15,7 +15,7 @@ class UniquePtr
public:
explicit UniquePtr(Type* ptr = nullptr) : m_ptr{ptr} {}
- UniquePtr(nullptr_t) : m_ptr{nullptr} {}
+ UniquePtr(std::nullptr_t) : m_ptr{nullptr} {}
UniquePtr(const UniquePtr&) = delete;
UniquePtr& operator=(const UniquePtr&) = delete;