We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8540bf4 commit ada1092Copy full SHA for ada1092
build-scripts/get_translation_characters.py
@@ -18,7 +18,7 @@ def add_preprocessor():
18
"#if defined(__clang__)\n"
19
"#define NOUNROLL _Pragma(\"clang loop unroll(disable)\")\n"
20
"#elif defined(__GNUC__)\n"
21
- "#define NOUNROLL #pragma GCC unroll 0\n"
+ "#define NOUNROLL _Pragma(\"GCC unroll 0\")\n"
22
"#else\n"
23
"#define NOUNROLL\n"
24
"#endif\n")
src/cldr/imgui-glyph-ranges.cpp
@@ -11,7 +11,7 @@
11
#if defined(__clang__)
12
#define NOUNROLL _Pragma("clang loop unroll(disable)")
13
#elif defined(__GNUC__)
14
-#define NOUNROLL #pragma GCC unroll 0
+#define NOUNROLL _Pragma("GCC unroll 0")
15
#else
16
#define NOUNROLL
17
#endif
0 commit comments