Comment spelling fixes
Add an optional extended description…
This commit is contained in:
parent
beaf29c158
commit
2ccd5aec1a
2
doxyfile
2
doxyfile
|
@ -842,7 +842,7 @@ VERBATIM_HEADERS = YES
|
|||
# If CLANG_ASSISTED_PARSING is set to YES, then doxygen will use the clang parser
|
||||
# for more acurate parsing at the cost of reduced performance. This can be
|
||||
# particularly helpful with template rich C++ code for which doxygen's built-in
|
||||
# parser lacks the necessairy type information.
|
||||
# parser lacks the necessary type information.
|
||||
|
||||
CLANG_ASSISTED_PARSING = NO
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ void CheckExceptionSafety::destructors()
|
|||
tok = tok->next()->link();
|
||||
}
|
||||
|
||||
// Skip uncaught execptions
|
||||
// Skip uncaught exceptions
|
||||
else if (Token::simpleMatch(tok, "if ( ! std :: uncaught_exception ( ) ) {")) {
|
||||
tok = tok->next()->link(); // end of if ( ... )
|
||||
tok = tok->next()->link(); // end of { ... }
|
||||
|
|
|
@ -2794,7 +2794,7 @@ void CheckOther::checkFuncArgNamesDifferent()
|
|||
if (!function || function->argCount() == 0)
|
||||
continue;
|
||||
|
||||
// only check functions with seperate declarations and definitions
|
||||
// only check functions with separate declarations and definitions
|
||||
if (function->argDef == function->arg)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue