summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz PluciƄski <mplucinski@mplucinski.com>2014-07-24 19:50:01 +0200
committerWill Estes <westes575@gmail.com>2014-07-25 08:16:30 -0400
commitf46a8c9ae460d1d002d5e9904ba0a6917c533118 (patch)
treec2ef50f1e65c4dbfb00e616436c289c8709164a7
parent8091dc907663673d9e0295c57fa446bdd38e9fab (diff)
Add disambiguation braces in main.c
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 1eb5aa6..8b9f3ed 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1577,11 +1577,12 @@ void readin ()
}
if (!do_yywrap) {
- if (!C_plus_plus)
+ if (!C_plus_plus) {
if (reentrant)
outn ("\n#define yywrap(yyscanner) 1");
else
outn ("\n#define yywrap() 1");
+ }
outn ("#define YY_SKIP_YYWRAP");
}