version: suppress macro usage linter messages

This commit is contained in:
Michele Caini
2024-05-23 08:22:25 +02:00
parent 9db1d085f9
commit aad65bf436

View File

@@ -3,6 +3,8 @@
#include "macro.h"
// NOLINTBEGIN(cppcoreguidelines-macro-usage)
#define ENTT_VERSION_MAJOR 3
#define ENTT_VERSION_MINOR 14
#define ENTT_VERSION_PATCH 0
@@ -11,4 +13,6 @@
ENTT_XSTR(ENTT_VERSION_MAJOR) \
"." ENTT_XSTR(ENTT_VERSION_MINOR) "." ENTT_XSTR(ENTT_VERSION_PATCH)
// NOLINTEND(cppcoreguidelines-macro-usage)
#endif