I\'m looking for a way to suppress doxygen warnings about undocumented member functions, but without using //! @cond and //! @endcond, so the member fu
//! @cond
//! @endcond
You just need to add brackets. This works for me:
//! \{ const int myVar3 = 3; const int myVar4 = 3; //! \}
There is no warning and it still appears in the output. You may alias this commants to \nowarn and \endnowarn if you like.
\nowarn
\endnowarn