From ea795dcccb136a45fa08a8a82953f95343706c6c Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 23 Aug 2024 19:12:42 +0200 Subject: Add is_array --- asl/object.hpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 asl/object.hpp (limited to 'asl/object.hpp') diff --git a/asl/object.hpp b/asl/object.hpp deleted file mode 100644 index e45376d..0000000 --- a/asl/object.hpp +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include "asl/ptr.hpp" - -namespace asl { - -template -class object final -{ - using wrapped = devoid_t::pointee>>; - - ASL_NO_UNIQUE_ADDRESS wrapped m_value; - -public: - object() requires default_constructible = default; - - object(const object&) = default; - object(object&&) = default; - - object& operator=(const object&) = default; - object& operator=(object&&) = default; - - ~object() = default; -}; - -} // namespace asl -- cgit