From: Brian Paul Date: Fri, 3 Sep 2010 21:25:50 +0000 (-0600) Subject: exec_list: replace class with struct X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5fd0396726d0142af364e3ea8ade470ff6c0559;p=mesa.git exec_list: replace class with struct To match the definition below. --- diff --git a/src/glsl/list.h b/src/glsl/list.h index 69cf9935f86..3197b03cf28 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.