Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
d089d118
Commit
d089d118
authored
Apr 13, 2012
by
alokp@chromium.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
3 deletions
+5
-3
version.h
src/common/version.h
+1
-1
Lexer.h
src/compiler/preprocessor/new/Lexer.h
+1
-1
Preprocessor.h
src/compiler/preprocessor/new/Preprocessor.h
+0
-1
pp.l
src/compiler/preprocessor/new/pp.l
+1
-0
pp_lex.cpp
src/compiler/preprocessor/new/pp_lex.cpp
+1
-0
space_test.cpp
tests/preprocessor_tests/space_test.cpp
+1
-0
No files found.
src/common/version.h
View file @
d089d118
#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 103
5
#define BUILD_REVISION 103
7
#define STRINGIFY(x) #x
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/compiler/preprocessor/new/Lexer.h
View file @
d089d118
...
@@ -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
{
{
...
...
src/compiler/preprocessor/new/Preprocessor.h
View file @
d089d118
...
@@ -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
{
{
...
...
src/compiler/preprocessor/new/pp.l
View file @
d089d118
...
@@ -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;
...
...
src/compiler/preprocessor/new/pp_lex.cpp
View file @
d089d118
...
@@ -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
;
...
...
tests/preprocessor_tests/space_test.cpp
View file @
d089d118
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment