Clarify Settings::buildDir
This commit is contained in:
parent
6b8d0be431
commit
f3365a874f
|
@ -547,7 +547,7 @@ void CheckFunctions::checkLibraryMatchFunctions()
|
|||
// details: https://en.cppreference.com/w/cpp/language/copy_elision
|
||||
void CheckFunctions::returnLocalStdMove()
|
||||
{
|
||||
if(!mTokenizer->isCPP() || mSettings->standards.cpp < Standards::CPP11)
|
||||
if (!mTokenizer->isCPP() || mSettings->standards.cpp < Standards::CPP11)
|
||||
return;
|
||||
|
||||
if (!mSettings->severity.isEnabled(Severity::performance))
|
||||
|
|
|
@ -114,7 +114,7 @@ public:
|
|||
/** Filename for bug hunting report */
|
||||
std::string bugHuntingReport;
|
||||
|
||||
/** @brief --cppcheck-build-dir */
|
||||
/** @brief --cppcheck-build-dir. Always uses / as path separator. No trailing path separator. */
|
||||
std::string buildDir;
|
||||
|
||||
/** @brief check all configurations (false if -D or --max-configs is used */
|
||||
|
|
Loading…
Reference in New Issue