summaryrefslogtreecommitdiff
path: root/Source/CParse
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2022-07-27 09:30:30 +1200
committerOlly Betts <olly@survex.com>2022-07-27 09:30:30 +1200
commite31de2aebba03425915dd9f399c60e9ec85a8ef4 (patch)
treeb3b27e40ca9f2e8e0f079c65ec2c8ea52ced20cd /Source/CParse
parent61928bd882f3b53ebd88862bc9bb40f2bb33ca0d (diff)
downloadswig-e31de2aebba03425915dd9f399c60e9ec85a8ef4.tar.gz
Tidy up indentation
Diffstat (limited to 'Source/CParse')
-rw-r--r--Source/CParse/parser.y8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/CParse/parser.y b/Source/CParse/parser.y
index a8456826b..816264de6 100644
--- a/Source/CParse/parser.y
+++ b/Source/CParse/parser.y
@@ -3442,12 +3442,14 @@ lambda_introducer : LBRACKET {
$$ = 0;
}
;
+
lambda_template : LESSTHAN {
skip_balanced('<','>');
$$ = 0;
- }
- | empty { $$ = 0; }
- ;
+ }
+ | empty { $$ = 0; }
+ ;
+
lambda_body : LBRACE {
skip_balanced('{','}');
$$ = 0;