I have a bunch of warnings (over 10000) in my debug output which can be savely ignored: Warning: CFile::GetStatus() returns m_attribute without high-order flags
Is it possible to write a filter for this window?
I have a bunch of warnings (over 10000) in my debug output which can be savely ignored: Warning: CFile::GetStatus() returns m_attribute without high-order flags
Is it possible to write a filter for this window?
#pragma warning( push )
#pragma warning( disable : nnnn )
#include "nasty.h"
#pragma warning( pop )
where nnnn
is the warning's number (or a comma-separated list of such numbers).