visual c++ - How do I disable warning 4355 globally in MSVC project? -
i want disable warning 4355 globally in msvc c++ project. 1 solution write
#pragma warning(default:4355)
in prefix.h
and #include prefix.h
source files. possible disable warning in project options?
menu: project - properties - configuration properties - c/c++ - advanced - disable specific warnings. type 4355.
if need disable several warnings, use semi-colon delimiter.
Comments
Post a Comment