Skip to content

Commit 954c539

Browse files
committed
[cmake] Remove MSVC C4355 override
Remove C4355 : ''this' : used in base member initializer list' from the list of forced disabled warnings. I'm not seeing any regressions in VS2017/VS2019 llvm/clang builds from removing this. Differential Revision: https://reviews.llvm.org/D61757 llvm-svn: 360413
1 parent 6d40c29 commit 954c539

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/cmake/modules/HandleLLVMOptions.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ if (MSVC)
512512
-wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
513513
-wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
514514
-wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
515-
-wd4355 # Suppress ''this' : used in base member initializer list'
516515
-wd4456 # Suppress 'declaration of 'var' hides local variable'
517516
-wd4457 # Suppress 'declaration of 'var' hides function parameter'
518517
-wd4458 # Suppress 'declaration of 'var' hides class member'

0 commit comments

Comments
 (0)