diff options
author | Jack Lloyd <[email protected]> | 2016-05-06 21:14:18 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-05-06 21:14:18 -0400 |
commit | 5dd6fbc45b356fa34717e77bc252392016baf8a9 (patch) | |
tree | d7d35e4cb26ee12f8d42ac9d936f9abe0410be11 /src/scripts/ci | |
parent | 83f0bb5c411119edf5138f183f207f88613e5eaf (diff) |
Turn MSVC warnings to /W4 and enable C4267
Move disabling C4250 and C4251 to cmd line instead of header pragma.
This means these warnings will show up in application code. But disabling
warnings inside a library header is probably not good form.
Diffstat (limited to 'src/scripts/ci')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index 140fbe92d..58e04eea9 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -24,7 +24,6 @@ install: ) - cl # check compiler version -# always build via amalgamation due to build time constraints on appveyor build_script: - python configure.py --cc=msvc --cpu=%PLATFORM% %MODE% - nmake |