summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2007-04-13 17:24:46 +0000
committerWill Estes <wlestes@users.sourceforge.net>2007-04-13 17:24:46 +0000
commitbf86176f501ae037f9c23f4754e0ac7d5a919962 (patch)
treec9f764a54bc172c03f91166f3f812e9e4dbdf7c2
parent4fcc35213af9f9d11ce1bd23357f713f33ddf761 (diff)
annotate endifs since they're a bit far from their opening #if statements
-rw-r--r--FlexLexer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/FlexLexer.h b/FlexLexer.h
index d16f367..bad4ce0 100644
--- a/FlexLexer.h
+++ b/FlexLexer.h
@@ -99,12 +99,12 @@ protected:
};
}
-#endif
+#endif // FLEXLEXER_H
#if defined(yyFlexLexer) || ! defined(yyFlexLexerOnce)
// Either this is the first time through (yyFlexLexerOnce not defined),
// or this is a repeated include to define a different flavor of
-// yyFlexLexer, as discussed in the flex man page.
+// yyFlexLexer, as discussed in the flex manual.
#define yyFlexLexerOnce
extern "C++" {
@@ -202,4 +202,5 @@ protected:
}
-#endif
+#endif // yyFlexLexer || ! yyFlexLexerOnce
+