Skip to content

Commit af4f708

Browse files
author
Ramya Darapuneni
committed
Fix build on machines with modern flex
This is to address pull request #20
1 parent 801128c commit af4f708

File tree

7 files changed

+9
-11
lines changed

7 files changed

+9
-11
lines changed

FlexLexer.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
//
3434
// If you want to create multiple lexer classes, you use the -P flag
3535
// to rename each yyFlexLexer to some other xxFlexLexer. You then
36-
// include <FlexLexer.h> in your other sources once per lexer class:
36+
// include "FlexLexer.h" in your other sources once per lexer class:
3737
//
3838
// #undef yyFlexLexer
3939
// #define yyFlexLexer xxFlexLexer
40-
// #include <FlexLexer.h>
40+
// #include "FlexLexer.h"
4141
//
4242
// #undef yyFlexLexer
4343
// #define yyFlexLexer zzFlexLexer
44-
// #include <FlexLexer.h>
44+
// #include "FlexLexer.h"
4545
// ...
4646

4747
#ifndef __FLEX_LEXER_H
@@ -204,5 +204,3 @@ class yyFlexLexer : public FlexLexer {
204204

205205
#endif // yyFlexLexer || ! yyFlexLexerOnce
206206

207-
208-
// 67d7842dbbe25473c3c32b93c0da8047785f30d78e8a024de1b57352245f9689

bif.yy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ typedef unsigned char YY_CHAR;
379379

380380
#define yytext_ptr yytext
381381

382-
#include <FlexLexer.h>
382+
#include "FlexLexer.h"
383383

384384
int yyFlexLexer::yywrap() { return 1; }
385385
int yyFlexLexer::yylex()

bifscanner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#if ! defined(yyFlexLexerOnce)
2929
#undef yyFlexLexer
3030
#define yyFlexLexer bifFlexLexer
31-
#include <FlexLexer.h>
31+
#include "FlexLexer.h"
3232
#endif
3333

3434
// Override the interface for yylex since we namespaced it

cmdoptions.yy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ typedef unsigned char YY_CHAR;
379379

380380
#define yytext_ptr yytext
381381

382-
#include <FlexLexer.h>
382+
#include "FlexLexer.h"
383383

384384
int yyFlexLexer::yywrap() { return 1; }
385385
int yyFlexLexer::yylex()

cmdoptionsscanner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#undef yyFlexLexer
3131
#define yyFlexLexer reginitFlexLexer
32-
#include <FlexLexer.h>
32+
#include "FlexLexer.h"
3333
#endif
3434

3535
// Override the interface for yylex since we namespaced it

reginit.yy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ typedef unsigned char YY_CHAR;
379379

380380
#define yytext_ptr yytext
381381

382-
#include <FlexLexer.h>
382+
#include "FlexLexer.h"
383383

384384
int yyFlexLexer::yywrap() { return 1; }
385385
int yyFlexLexer::yylex()

reginitscanner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#undef yyFlexLexer
3131
#define yyFlexLexer reginitFlexLexer
32-
#include <FlexLexer.h>
32+
#include "FlexLexer.h"
3333
#endif
3434

3535
// Override the interface for yylex since we namespaced it

0 commit comments

Comments
 (0)