]> granicus.if.org Git - llvm/commitdiff
[cmake] Remove MSVC C4258 override
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 4 Sep 2019 10:01:31 +0000 (10:01 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 4 Sep 2019 10:01:31 +0000 (10:01 +0000)
Tested on VS2017 and VS2019 llvm/clang builds with WX enabled - its no longer necessary to disable this warning.

Differential Revision: https://reviews.llvm.org/D67047

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370866 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/modules/HandleLLVMOptions.cmake

index fa92b7452a5b9c8bb0a40af39894e97208719a8d..613d6f38d4559fa5462acf86d63d978ba3d43db4 100644 (file)
@@ -504,7 +504,6 @@ if (MSVC)
       -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
       -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
       -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
-      -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used'
       -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
       -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
       -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'