I'm using VS2008 and VAX 1727 with C++. When I write the following code snippet in a cpp-file, the outline view was not displayed correct.
Result::Result()
: m_userReturnCode(0)
, m_errorDescription()
, m_errorKind(ErrUnknown)
, m_ok(true)
#ifdef _DEBUG
, m_evaluated(false)
#endif
{
}
The preprocessor directive is visible over the method definition.
Can You suppress the preprocessor directive in this context?