Skip to content
Snippets Groups Projects
Commit b6396eae authored by Michael J. Spencer's avatar Michael J. Spencer
Browse files

Suppress 'warning C4062: enumerator X in switch of enum Y is not handled' from system header.

llvm-svn: 230422
parent 6b6e9e2b
No related branches found
No related tags found
No related merge requests found
......@@ -88,6 +88,7 @@ endif()
if (MSVC)
add_definitions(-wd4530) # Suppress 'warning C4530: C++ exception handler used, but unwind semantics are not enabled.'
add_definitions(-wd4062) # Suppress 'warning C4062: enumerator X in switch of enum Y is not handled' from system header.
endif()
include_directories(BEFORE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment