diff options
| author | Brian Paul <brianp@vmware.com> | 2010-09-03 15:25:50 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2010-09-03 15:25:55 -0600 | 
| commit | a5fd0396726d0142af364e3ea8ade470ff6c0559 (patch) | |
| tree | 64314a28acf64292638fc5435358a052de6ffafe | |
| parent | 8680c1324097ec3df51e8bf6f25a3347df6f798c (diff) | |
exec_list: replace class with struct
To match the definition below.
| -rw-r--r-- | src/glsl/list.h | 2 | 
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. | 
