summaryrefslogtreecommitdiff
path: root/api_test
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-08-10 09:53:46 -0700
committerKevin Wojniak <kainjow@kainjow.com>2015-08-10 09:53:46 -0700
commit59bcd222c3ef1a64045e27db24ffddeb99ee29d4 (patch)
treee6693373d39137c3b2e66ea205c55670d02bf282 /api_test
parent7baf9297f4f2e368c7c91ac76e16e88902987ec6 (diff)
Remove need to disable MSVC warning 4800
Diffstat (limited to 'api_test')
-rw-r--r--api_test/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/api_test/CMakeLists.txt b/api_test/CMakeLists.txt
index 7489388..f7dff55 100644
--- a/api_test/CMakeLists.txt
+++ b/api_test/CMakeLists.txt
@@ -18,7 +18,7 @@ if(MSVC)
else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
endif()
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127 /wd4244 /wd4267 /wd4706 /wd4800 /D_CRT_SECURE_NO_WARNINGS")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127 /wd4244 /wd4267 /wd4706 /D_CRT_SECURE_NO_WARNINGS")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /TP")
elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic")