Fixed #4987 (spellfix for verbose message in CheckClass::noConstructorError)

This commit is contained in:
Ettl Martin 2013-08-28 05:48:31 +02:00 committed by Daniel Marjamäki
parent 5d7ebadf25
commit e223e13747
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ void CheckClass::noConstructorError(const Token *tok, const std::string &classna
"The " + std::string(isStruct ? "struct" : "class") + " '" + classname +
"' does not have a constructor although it has private member variables. "
"Member variables of builtin types are left uninitialized when the class is "
"instanciated. That may cause bugs or undefined behavior.");
"instantiated. That may cause bugs or undefined behavior.");
}
void CheckClass::uninitVarError(const Token *tok, const std::string &classname, const std::string &varname, bool inconclusive)