summaryrefslogtreecommitdiffstats
path: root/deps/include/entt/config/macro.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/include/entt/config/macro.h')
-rw-r--r--deps/include/entt/config/macro.h11
1 files changed, 11 insertions, 0 deletions
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