Fixed calculation precedence warning introduced in recent commit
This commit is contained in:
parent
4c8bb9ac6f
commit
c4b6beac4d
|
@ -2886,9 +2886,11 @@ void SymbolDatabase::printOut(const char *title) const
|
||||||
else
|
else
|
||||||
std::cout << " Unknown";
|
std::cout << " Unknown";
|
||||||
|
|
||||||
std::cout << " " << type->friendList[i].nameEnd ? type->friendList[i].nameEnd->str() : emptyString;
|
std::cout << ' ';
|
||||||
|
if (type->friendList[i].nameEnd)
|
||||||
|
std::cout << type->friendList[i].nameEnd->str();
|
||||||
if (i+1 < type->friendList.size())
|
if (i+1 < type->friendList.size())
|
||||||
std::cout << ",";
|
std::cout << ',';
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << " )" << std::endl;
|
std::cout << " )" << std::endl;
|
||||||
|
|
Loading…
Reference in New Issue