From 75a98740215d82447e5189b36d1dbfa59fcdd5db Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 8 Aug 2011 09:00:57 -0600 Subject: [PATCH] glsl: silence warning about trailing comma in enum list --- src/glsl/ir_function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/ir_function.cpp b/src/glsl/ir_function.cpp index 2a4de5b0dcd..51d32b46f98 100644 --- 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; /** -- 2.30.2