diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-09-05 15:08:58 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-01-15 20:15:26 +0100 |
commit | b9dafe7d9ffcbe7928ffbfba816b54e196c57664 (patch) | |
tree | b2aa7f929c950e0434aebaae16a625afa0abcbfe /.appveyor.yml | |
parent | 9c719987718d9fcc3a689e50f5212acc7ead7606 (diff) |
Fix remaining compiler warnings (MSVC). Move disabling of specific warnings from /nowarn to project file.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 2aebf1cd54..249d0b8df9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -33,7 +33,7 @@ before_build: - ps: Start-Process clcache-server - ps: fsutil behavior set disablelastaccess 0 # Enable Access time feature on Windows (for clcache) build_script: -- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nowarn:C4244;C4267;C4715 /nologo +- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nologo after_build: - ps: fsutil behavior set disablelastaccess 1 # Disable Access time feature on Windows (better performance) - ps: clcache -z |