We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d970220 commit e9f1475Copy full SHA for e9f1475
lib/Common/Codex/Utf8Codex.cpp
@@ -9,6 +9,16 @@
9
#define _Analysis_assume_(expr)
10
#endif
11
12
+#ifdef _MSC_VER
13
+//=============================
14
+// Disabled Warnings
15
16
+
17
+#pragma warning(push)
18
19
+#pragma warning(disable: 4127) // constant expression for template parameter
20
+#endif
21
22
extern void CodexAssert(bool condition);
23
24
namespace utf8
@@ -611,3 +621,7 @@ namespace utf8
611
621
}
612
622
613
623
} // namespace utf8
624
625
626
+#pragma warning(pop)
627
0 commit comments