astyle formatting

This commit is contained in:
Daniel Marjamäki 2011-11-29 20:44:23 +01:00
parent baa97d53fc
commit 0d48cd390b
1 changed files with 6 additions and 6 deletions

View File

@ -2426,7 +2426,7 @@ namespace {
struct FuncFilter { struct FuncFilter {
FuncFilter(const Scope *scope, const Token *tok): _scope(scope), _tok(tok) {} FuncFilter(const Scope *scope, const Token *tok): _scope(scope), _tok(tok) {}
bool operator() (const Function &func) { bool operator()(const Function &func) {
// todo: function args, etc?? // todo: function args, etc??
bool matchingFunc = func.type == Function::eFunction && bool matchingFunc = func.type == Function::eFunction &&
_tok->str() == func.token->str(); _tok->str() == func.token->str();