Auto-format: no single-line functions

This commit is contained in:
Max Brunsfeld 2015-07-31 16:32:24 -07:00
parent e89ec7c85e
commit c18351772a
24 changed files with 243 additions and 77 deletions

View file

@ -29,7 +29,9 @@ ParseAction::ParseAction()
consumed_symbol_count(0),
associativity(rules::AssociativityUnspecified) {}
ParseAction ParseAction::Error() { return ParseAction(); }
ParseAction ParseAction::Error() {
return ParseAction();
}
ParseAction ParseAction::Accept() {
ParseAction action;