projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8680c13
)
exec_list: replace class with struct
author
Brian Paul
<brianp@vmware.com>
Fri, 3 Sep 2010 21:25:50 +0000
(15:25 -0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 3 Sep 2010 21:25:55 +0000
(15:25 -0600)
To match the definition below.
src/glsl/list.h
patch
|
blob
|
history
diff --git
a/src/glsl/list.h
b/src/glsl/list.h
index 69cf9935f86fef9a5121c9620764a0d85588a486..3197b03cf2832a51fd9044e72f9debb55f33cb8f 100644
(file)
--- a/
src/glsl/list.h
+++ b/
src/glsl/list.h
@@
-169,7
+169,7
@@
struct exec_node {
/**
* Insert another list in the list before the current node
*/
- void insert_before(
class
exec_list *before);
+ void insert_before(
struct
exec_list *before);
/**
* Replace the current node with the given node.