From e223e13747dcc22b1bdf8c8d59ec76faee815486 Mon Sep 17 00:00:00 2001 From: Ettl Martin Date: Wed, 28 Aug 2013 05:48:31 +0200 Subject: [PATCH] Fixed #4987 (spellfix for verbose message in CheckClass::noConstructorError) --- lib/checkclass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkclass.cpp b/lib/checkclass.cpp index 880967652..63accecf9 100644 --- a/lib/checkclass.cpp +++ b/lib/checkclass.cpp @@ -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)