From a141c401f78467bc15f62882fca5d55a007cacbb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 00:21:48 +0100 Subject: Reorganize everything --- asl/base/annotations.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 asl/base/annotations.hpp (limited to 'asl/base/annotations.hpp') diff --git a/asl/base/annotations.hpp b/asl/base/annotations.hpp new file mode 100644 index 0000000..b87dbde --- /dev/null +++ b/asl/base/annotations.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include "asl/base/config.hpp" + +#if ASL_COMPILER_CLANG_CL + #define ASL_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]] +#elif ASL_COMPILER_CLANG + #define ASL_NO_UNIQUE_ADDRESS [[no_unique_address]] +#endif -- cgit