Refactoring: changed "aaaa" to "str"
This commit is contained in:
parent
661068bcd4
commit
4b04d38867
|
@ -71,7 +71,7 @@ void CheckFunctionUsage::parseTokens( const Tokenizer &tokenizer )
|
|||
|
||||
if ( funcname )
|
||||
{
|
||||
FunctionUsage &func = _functions[ funcname->aaaa() ];
|
||||
FunctionUsage &func = _functions[ funcname->str() ];
|
||||
|
||||
// No filename set yet..
|
||||
if (func.filename.empty())
|
||||
|
@ -123,7 +123,7 @@ void CheckFunctionUsage::parseTokens( const Tokenizer &tokenizer )
|
|||
|
||||
if ( funcname )
|
||||
{
|
||||
FunctionUsage &func = _functions[ funcname->aaaa() ];
|
||||
FunctionUsage &func = _functions[ funcname->str() ];
|
||||
|
||||
if ( func.filename.empty() || func.filename == "+" )
|
||||
func.usedOtherFile = true;
|
||||
|
|
|
@ -49,7 +49,7 @@ private:
|
|||
std::string ret;
|
||||
for ( const TOKEN *tok = tokenizer.tokens(); tok; tok = tok->next() )
|
||||
{
|
||||
ret += std::string(tok->aaaa()) + " ";
|
||||
ret += tok->str() + " ";
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue