mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
12 lines
221 B
C
12 lines
221 B
C
#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
|