Borland C++: Fixed compiler error
This commit is contained in:
parent
0bdf63d864
commit
5ab8967632
|
@ -408,7 +408,7 @@ void Tokenizer::simplifyTypedef()
|
|||
}
|
||||
}
|
||||
|
||||
const std::string pattern(className.empty() ? std::string("") : className + " :: " + typeName);
|
||||
const std::string pattern(className.empty() ? "" : (className + " :: " + typeName).c_str());
|
||||
int level = 0;
|
||||
bool inScope = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue