diff options
author | Kevin Wojniak <kainjow@kainjow.com> | 2015-08-10 10:09:26 -0700 |
---|---|---|
committer | Kevin Wojniak <kainjow@kainjow.com> | 2015-08-10 10:09:26 -0700 |
commit | ce0e58469f7c4abf3f51bde6d3298215d6ef99d1 (patch) | |
tree | a858fedc30e6149ed430784942413a2b06741ec9 /api_test | |
parent | 6c51eb5a98521cc2f94dd0139a17f72e025ecfe8 (diff) |
Remove need to disable MSVC warning 4267
Diffstat (limited to 'api_test')
-rw-r--r-- | api_test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api_test/CMakeLists.txt b/api_test/CMakeLists.txt index 02dbf15..3151ccc 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} /wd4267 /wd4706 /D_CRT_SECURE_NO_WARNINGS") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /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") |