diff options
Diffstat (limited to 'Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h')
-rw-r--r-- | Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h b/Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h index eb85cea87..775bc0a20 100644 --- a/Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h +++ b/Source/ThirdParty/ANGLE/src/compiler/preprocessor/Lexer.h @@ -7,19 +7,21 @@ #ifndef COMPILER_PREPROCESSOR_LEXER_H_ #define COMPILER_PREPROCESSOR_LEXER_H_ +#include "common/angleutils.h" + namespace pp { struct Token; -class Lexer +class Lexer : angle::NonCopyable { public: virtual ~Lexer(); - virtual void lex(Token* token) = 0; + virtual void lex(Token *token) = 0; }; } // namespace pp -#endif // COMPILER_PREPROCESSOR_LEXER_H_ +#endif // COMPILER_PREPROCESSOR_LEXER_H_ |