From 3bf42c6ff3805a0d42bbc661794a95ff31bedc26 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 15 Mar 2025 16:22:09 +0500 Subject: Add whatever I was working on for the last month --- deps/include/entt/config/macro.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 deps/include/entt/config/macro.h (limited to 'deps/include/entt/config/macro.h') diff --git a/deps/include/entt/config/macro.h b/deps/include/entt/config/macro.h new file mode 100644 index 0000000..8c5ed52 --- /dev/null +++ b/deps/include/entt/config/macro.h @@ -0,0 +1,11 @@ +#ifndef ENTT_CONFIG_MACRO_H +#define ENTT_CONFIG_MACRO_H + +// NOLINTBEGIN(cppcoreguidelines-macro-usage) + +#define ENTT_STR(arg) #arg +#define ENTT_XSTR(arg) ENTT_STR(arg) + +// NOLINTEND(cppcoreguidelines-macro-usage) + +#endif -- cgit