summaryrefslogtreecommitdiff
path: root/src/glsl/list.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-09-03 15:25:50 -0600
committerBrian Paul <brianp@vmware.com>2010-09-03 15:25:55 -0600
commita5fd0396726d0142af364e3ea8ade470ff6c0559 (patch)
tree64314a28acf64292638fc5435358a052de6ffafe /src/glsl/list.h
parent8680c1324097ec3df51e8bf6f25a3347df6f798c (diff)
exec_list: replace class with struct
To match the definition below.
Diffstat (limited to 'src/glsl/list.h')
-rw-r--r--src/glsl/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/list.h b/src/glsl/list.h
index 69cf9935f8..3197b03cf2 100644
--- 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.