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
320c5d7f
Commit
320c5d7f
authored
Apr 13, 2012
by
alokp@chromium.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor formatting change in pp.l.
git-svn-id:
https://angleproject.googlecode.com/svn/trunk@1039
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
763d0fb9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
version.h
src/common/version.h
+1
-1
pp.l
src/compiler/preprocessor/new/pp.l
+1
-3
pp_lex.cpp
src/compiler/preprocessor/new/pp_lex.cpp
+1
-3
No files found.
src/common/version.h
View file @
320c5d7f
#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
7
#define BUILD_REVISION 103
9
#define STRINGIFY(x) #x
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/compiler/preprocessor/new/pp.l
View file @
320c5d7f
...
@@ -60,9 +60,7 @@ FRACTIONAL_CONSTANT ({DIGIT}*"."{DIGIT}+)|({DIGIT}+".")
...
@@ -60,9 +60,7 @@ FRACTIONAL_CONSTANT ({DIGIT}*"."{DIGIT}+)|({DIGIT}+".")
%%
%%
# {
# { return yytext[0]; }
return yytext[0];
}
{IDENTIFIER} {
{IDENTIFIER} {
yylval->assign(yytext, yyleng);
yylval->assign(yytext, yyleng);
...
...
src/compiler/preprocessor/new/pp_lex.cpp
View file @
320c5d7f
...
@@ -855,9 +855,7 @@ do_action: /* This label is used only to access EOF actions. */
...
@@ -855,9 +855,7 @@ do_action: /* This label is used only to access EOF actions. */
case
1
:
case
1
:
YY_RULE_SETUP
YY_RULE_SETUP
{
{
return
yytext
[
0
];
}
return
yytext
[
0
];
}
YY_BREAK
YY_BREAK
case
2
:
case
2
:
YY_RULE_SETUP
YY_RULE_SETUP
...
...
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