From f2cf71f6e99e158363f7487c1071938bcae7ab1b Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Fri, 1 Nov 2019 18:39:53 +0300 Subject: [PATCH] Fix typo --- lib/checkclass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkclass.cpp b/lib/checkclass.cpp index 9be1870f7..b5e389e94 100644 --- a/lib/checkclass.cpp +++ b/lib/checkclass.cpp @@ -228,7 +228,7 @@ void CheckClass::constructors() if (classNameUsed) operatorEqVarError(func.token, scope->className, var.name(), inconclusive); } else if (func.access != AccessControl::Private || mSettings->standards.cpp >= Standards::CPP11) { - // If constructor is not in scope then we maybe using a oonstructor from a different template specialization + // If constructor is not in scope then we maybe using a constructor from a different template specialization if (!precedes(scope->bodyStart, func.tokenDef)) continue; const Scope *varType = var.typeScope();