Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions lib/Common/Codex/Utf8Codex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@
#define _Analysis_assume_(expr)
#endif

#ifdef _MSC_VER
//=============================
// Disabled Warnings
//=============================

#pragma warning(push)

#pragma warning(disable: 4127) // constant expression for template parameter
#endif

extern void CodexAssert(bool condition);

namespace utf8
Expand Down Expand Up @@ -611,3 +621,7 @@ namespace utf8
}

} // namespace utf8

#ifdef _MSC_VER
#pragma warning(pop)
#endif