projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d4d8a8
)
glsl: silence warning about trailing comma in enum list
author
Brian Paul
<brianp@vmware.com>
Mon, 8 Aug 2011 15:00:57 +0000
(09:00 -0600)
committer
Brian Paul
<brianp@vmware.com>
Mon, 8 Aug 2011 15:00:57 +0000
(09:00 -0600)
src/glsl/ir_function.cpp
patch
|
blob
|
history
diff --git
a/src/glsl/ir_function.cpp
b/src/glsl/ir_function.cpp
index 2a4de5b0dcdc7b48bd642db630455ca19e178dfa..51d32b46f98425a46326117a64452527b38abddd 100644
(file)
--- a/
src/glsl/ir_function.cpp
+++ b/
src/glsl/ir_function.cpp
@@
-27,7
+27,7
@@
typedef enum {
PARAMETER_LIST_NO_MATCH,
PARAMETER_LIST_EXACT_MATCH,
- PARAMETER_LIST_INEXACT_MATCH
,
/*< Match requires implicit conversion. */
+ PARAMETER_LIST_INEXACT_MATCH /*< Match requires implicit conversion. */
} parameter_list_match_t;
/**