From 76e7853971c1843952c03487b51aab4cefc87a44 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 13 May 2005 21:38:34 +0000 Subject: [PATCH] From Tom Jolly, removing trailing comma for last entries in enums to fix IRIX compile warnings. --- include/osg/ArgumentParser | 2 +- include/osg/PolygonMode | 2 +- include/osg/Uniform | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/osg/ArgumentParser b/include/osg/ArgumentParser index 8f2ff46da..cd847a1a7 100644 --- a/include/osg/ArgumentParser +++ b/include/osg/ArgumentParser @@ -38,7 +38,7 @@ class OSG_EXPORT ArgumentParser DOUBLE_PARAMETER, INT_PARAMETER, UNSIGNED_INT_PARAMETER, - STRING_PARAMETER, + STRING_PARAMETER }; union ValueUnion diff --git a/include/osg/PolygonMode b/include/osg/PolygonMode index 9252bf756..30dca536b 100644 --- a/include/osg/PolygonMode +++ b/include/osg/PolygonMode @@ -66,7 +66,7 @@ class OSG_EXPORT PolygonMode : public StateAttribute enum Face { FRONT_AND_BACK, FRONT, - BACK, + BACK }; void setMode(Face face,Mode mode); diff --git a/include/osg/Uniform b/include/osg/Uniform index 6b055711c..0f36741b3 100644 --- a/include/osg/Uniform +++ b/include/osg/Uniform @@ -59,7 +59,7 @@ class OSG_EXPORT Uniform : public Object SAMPLER_CUBE = GL_SAMPLER_CUBE, SAMPLER_1D_SHADOW = GL_SAMPLER_1D_SHADOW, SAMPLER_2D_SHADOW = GL_SAMPLER_2D_SHADOW, - UNDEFINED = -1, + UNDEFINED = -1 }; public: