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
b3abc78b
Commit
b3abc78b
authored
Nov 17, 2010
by
alokp@chromium.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compile error introduced in r482.
git-svn-id:
https://angleproject.googlecode.com/svn/trunk@484
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
996675c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
IntermTraverse.cpp
src/compiler/IntermTraverse.cpp
+8
-8
No files found.
src/compiler/IntermTraverse.cpp
View file @
b3abc78b
...
...
@@ -229,9 +229,9 @@ void TIntermLoop::traverse(TIntermTraverser* it)
if
(
it
->
rightToLeft
)
{
if
(
terminal
)
if
(
expr
)
{
terminal
->
traverse
(
it
);
expr
->
traverse
(
it
);
}
if
(
body
)
...
...
@@ -239,16 +239,16 @@ void TIntermLoop::traverse(TIntermTraverser* it)
body
->
traverse
(
it
);
}
if
(
test
)
if
(
cond
)
{
test
->
traverse
(
it
);
cond
->
traverse
(
it
);
}
}
else
{
if
(
test
)
if
(
cond
)
{
test
->
traverse
(
it
);
cond
->
traverse
(
it
);
}
if
(
body
)
...
...
@@ -256,9 +256,9 @@ void TIntermLoop::traverse(TIntermTraverser* it)
body
->
traverse
(
it
);
}
if
(
terminal
)
if
(
expr
)
{
terminal
->
traverse
(
it
);
expr
->
traverse
(
it
);
}
}
...
...
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