@@ -2937,7 +2937,7 @@ std::string Function::fullName() const
29372937 if (!s->className .empty ())
29382938 ret = s->className + " ::" + ret;
29392939 }
2940- ret += " ( " ;
2940+ ret += ' ( ' ;
29412941 for (const Variable &a : argumentList)
29422942 ret += (a.index () == 0 ? " " : " ," ) + a.name ();
29432943 return ret + " )" ;
@@ -3000,7 +3000,7 @@ static bool usingNamespace(const Scope *scope, const Token *first, const Token *
30003000 std::string nsName;
30013001 while (start && start->str () != " ;" ) {
30023002 if (!nsName.empty ())
3003- nsName += " " ;
3003+ nsName += ' ' ;
30043004 nsName += start->str ();
30053005 start = start->next ();
30063006 }
@@ -4442,14 +4442,14 @@ void SymbolDatabase::printXml(std::ostream &out) const
44424442 outs += " <scope" ;
44434443 outs += " id=\" " ;
44444444 outs += id_string (&*scope);
4445- outs += " \" " ;
4445+ outs += ' " ' ;
44464446 outs += " type=\" " ;
44474447 outs += scopeTypeToString (scope->type );
4448- outs += " \" " ;
4448+ outs += ' " ' ;
44494449 if (!scope->className .empty ()) {
44504450 outs += " className=\" " ;
44514451 outs += ErrorLogger::toxml (scope->className );
4452- outs += " \" " ;
4452+ outs += ' " ' ;
44534453 }
44544454 if (scope->bodyStart ) {
44554455 outs += " bodyStart=\" " ;
@@ -4464,17 +4464,17 @@ void SymbolDatabase::printXml(std::ostream &out) const
44644464 if (scope->nestedIn ) {
44654465 outs += " nestedIn=\" " ;
44664466 outs += id_string (scope->nestedIn );
4467- outs += " \" " ;
4467+ outs += ' " ' ;
44684468 }
44694469 if (scope->function ) {
44704470 outs += " function=\" " ;
44714471 outs += id_string (scope->function );
4472- outs += " \" " ;
4472+ outs += ' " ' ;
44734473 }
44744474 if (scope->definedType ) {
44754475 outs += " definedType=\" " ;
44764476 outs += id_string (scope->definedType );
4477- outs += " \" " ;
4477+ outs += ' " ' ;
44784478 }
44794479 if (scope->functionList .empty () && scope->varlist .empty ())
44804480 outs += " />\n " ;
@@ -4504,7 +4504,7 @@ void SymbolDatabase::printXml(std::ostream &out) const
45044504 if (function->access == AccessControl::Public || function->access == AccessControl::Protected || function->access == AccessControl::Private) {
45054505 outs += " access=\" " ;
45064506 outs += accessControlToString (function->access );
4507- outs +=" \" " ;
4507+ outs += ' " ' ;
45084508 }
45094509 if (function->isOperator ())
45104510 outs += " isOperator=\" true\" " ;
@@ -4525,7 +4525,7 @@ void SymbolDatabase::printXml(std::ostream &out) const
45254525 if (const Function* overriddenFunction = function->getOverriddenFunction ()) {
45264526 outs += " overriddenFunction=\" " ;
45274527 outs += id_string (overriddenFunction);
4528- outs += " \" " ;
4528+ outs += ' " ' ;
45294529 }
45304530 if (function->isAttributeConst ())
45314531 outs += " isAttributeConst=\" true\" " ;
@@ -4570,7 +4570,7 @@ void SymbolDatabase::printXml(std::ostream &out) const
45704570 outs += id_string (&type);
45714571 outs += " \" classScope=\" " ;
45724572 outs += id_string (type.classScope );
4573- outs += " \" " ;
4573+ outs += ' " ' ;
45744574 if (type.derivedFrom .empty ()) {
45754575 outs += " />\n " ;
45764576 continue ;
@@ -4580,16 +4580,16 @@ void SymbolDatabase::printXml(std::ostream &out) const
45804580 outs += " <derivedFrom" ;
45814581 outs += " access=\" " ;
45824582 outs += accessControlToString (baseInfo.access );
4583- outs += " \" " ;
4583+ outs += ' " ' ;
45844584 outs += " type=\" " ;
45854585 outs += id_string (baseInfo.type );
4586- outs += " \" " ;
4586+ outs += ' " ' ;
45874587 outs += " isVirtual=\" " ;
45884588 outs += bool_to_string (baseInfo.isVirtual );
4589- outs += " \" " ;
4589+ outs += ' " ' ;
45904590 outs += " nameTok=\" " ;
45914591 outs += id_string (baseInfo.nameTok );
4592- outs += " \" " ;
4592+ outs += ' " ' ;
45934593 outs += " />\n " ;
45944594 }
45954595 outs += " </type>\n " ;
@@ -5964,7 +5964,7 @@ static std::string getTypeString(const Token *typeToken)
59645964 if (typeToken->str () == " <" ) {
59655965 for (const Token *tok = typeToken; tok != typeToken->link (); tok = tok->next ())
59665966 ret += tok->str ();
5967- ret += " > " ;
5967+ ret += ' > ' ;
59685968 typeToken = typeToken->link ()->next ();
59695969 }
59705970 }
@@ -8352,7 +8352,7 @@ std::string ValueType::dump() const
83528352 ret += " valueType-type=\" container\" " ;
83538353 ret += " valueType-containerId=\" " ;
83548354 ret += id_string (container);
8355- ret += " \" " ;
8355+ ret += ' " ' ;
83568356 break ;
83578357 }
83588358 case ITERATOR :
0 commit comments