Browse Source

version: suppress macro usage linter messages

Michele Caini 1 year ago
parent
commit
aad65bf436
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/entt/config/version.h

+ 4 - 0
src/entt/config/version.h

@@ -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