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 D61757
[cmake] Remove MSVC C4355 override RKSimon on May 9 2019, 1:39 PM. Authored by
Details
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.
Diff Detail
Event TimelineComment Actions lgtm I noticed you can see these warnings by compiling with /Wall, by the way. It's MSVC's equivalent of Clang's -Weverything. So I guess that's the new next level after /W4. |