diff options
Diffstat (limited to 'asl/annotations.hpp')
-rw-r--r-- | asl/annotations.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/asl/annotations.hpp b/asl/annotations.hpp index a94834d..c0d8f20 100644 --- a/asl/annotations.hpp +++ b/asl/annotations.hpp @@ -10,3 +10,14 @@ #define ASL_NO_UNIQUE_ADDRESS [[no_unique_address]]
#endif
+namespace asl
+{
+
+struct unsafe
+{
+ unsafe() = delete;
+ explicit unsafe(auto&&) {}
+};
+
+} // namespace asl
+
|