code style fix

This commit is contained in:
Daniel Marjamäki 2009-01-18 17:47:40 +00:00
parent f409861492
commit 0177f77505
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ public:
_name = tokens()->str();
std::string::size_type pos = macro.find_first_of(" (");
if ( pos != std::string::npos && macro[pos] == '(' )
if (pos != std::string::npos && macro[pos] == '(')
{
// Extract macro parameters
if (Token::Match(tokens(), "%var% ( %var%"))