views:

40

answers:

1

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?

A: 

Disable it in the code:

#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).

sbi
Not possible it's MFC code
Michael
@Michael: Adapted my answer.
sbi