I activated alerts with doxygen
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
WARN_NO_PARAMDOC = YES
But undocumented methods like this:
void AnimationManager::setAnimationTimeStep( double timeStep )
{
...
}
Do not throw warnings while generating doxygen. Is there a way to display a warning in this situation?
A similar problem with undocumented returns like
bool AnimationManager::hasAnimationTimeStep( )
{
...
}
Does not throw a warning for undocumented returns
source
share