summaryrefslogtreecommitdiff
path: root/FlexLexer.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-10-10 15:28:08 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-10-10 15:28:08 +0000
commita4fa8632b7b60d35eb519367a880873f4c6fae1e (patch)
treef77a7f24eb25f9d77f0051ebfa93542d0e83b827 /FlexLexer.h
parent8606320b7922e07c749a9d9106639027c6fc3e02 (diff)
Whitespace tweaking
Diffstat (limited to 'FlexLexer.h')
-rw-r--r--FlexLexer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FlexLexer.h b/FlexLexer.h
index 719597f..571a6b7 100644
--- a/FlexLexer.h
+++ b/FlexLexer.h
@@ -37,7 +37,7 @@
class FlexLexer {
- public:
+public:
virtual ~FlexLexer() { }
const char* YYText() { return yytext; }
@@ -57,7 +57,7 @@ protected:
class yyFlexLexer : public FlexLexer {
- public:
+public:
// arg_yyin and arg_yyout default to the cin and cout, but we
// only make that assignment when initializing in yylex().
yyFlexLexer( istream* arg_yyin = 0, ostream* arg_yyout = 0 )
@@ -95,7 +95,7 @@ class yyFlexLexer : public FlexLexer {
virtual int yylex();
- protected:
+protected:
virtual int LexerInput( char* buf, int max_size );
virtual void LexerOutput( const char* buf, int size );