Commit d089d118 by alokp@chromium.org

Removed unnecessary includion of Token.h in various files.

git-svn-id: https://angleproject.googlecode.com/svn/trunk@1037 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent d5bb405f
#define MAJOR_VERSION 1 #define MAJOR_VERSION 1
#define MINOR_VERSION 0 #define MINOR_VERSION 0
#define BUILD_VERSION 0 #define BUILD_VERSION 0
#define BUILD_REVISION 1035 #define BUILD_REVISION 1037
#define STRINGIFY(x) #x #define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x) #define MACRO_STRINGIFY(x) STRINGIFY(x)
......
...@@ -10,12 +10,12 @@ ...@@ -10,12 +10,12 @@
#include <memory> #include <memory>
#include "pp_utils.h" #include "pp_utils.h"
#include "Token.h"
namespace pp namespace pp
{ {
class Input; class Input;
struct Token;
class Lexer class Lexer
{ {
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include "Lexer.h" #include "Lexer.h"
#include "pp_utils.h" #include "pp_utils.h"
#include "Token.h"
namespace pp namespace pp
{ {
......
...@@ -25,6 +25,7 @@ IF YOU MODIFY THIS FILE YOU ALSO NEED TO RUN generate_parser.sh. ...@@ -25,6 +25,7 @@ IF YOU MODIFY THIS FILE YOU ALSO NEED TO RUN generate_parser.sh.
%{ %{
#include "Input.h" #include "Input.h"
#include "Lexer.h" #include "Lexer.h"
#include "Token.h"
typedef std::string YYSTYPE; typedef std::string YYSTYPE;
typedef pp::Token::Location YYLTYPE; typedef pp::Token::Location YYLTYPE;
......
...@@ -517,6 +517,7 @@ IF YOU MODIFY THIS FILE YOU ALSO NEED TO RUN generate_parser.sh. ...@@ -517,6 +517,7 @@ IF YOU MODIFY THIS FILE YOU ALSO NEED TO RUN generate_parser.sh.
#include "Input.h" #include "Input.h"
#include "Lexer.h" #include "Lexer.h"
#include "Token.h"
typedef std::string YYSTYPE; typedef std::string YYSTYPE;
typedef pp::Token::Location YYLTYPE; typedef pp::Token::Location YYLTYPE;
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "Preprocessor.h" #include "Preprocessor.h"
#include "Token.h"
// Whitespace characters allowed in GLSL. // Whitespace characters allowed in GLSL.
// Note that newline characters (\n) will be tested separately. // Note that newline characters (\n) will be tested separately.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment