Commit 02817b9c88518fce421a9952cc85732b6b66ddaf

brlcad 2008-05-04T06:23:04

quell compilation warnings about the last enum having a comma

diff --git a/src/FTGL/ftgl.h b/src/FTGL/ftgl.h
index 6af16b5..8abb103 100644
--- a/src/FTGL/ftgl.h
+++ b/src/FTGL/ftgl.h
@@ -53,7 +53,7 @@ namespace FTGL
         RENDER_FRONT = 0x01,
         RENDER_BACK = 0x02,
         RENDER_SIDE = 0x04,
-        RENDER_ALL = 0xffff,
+        RENDER_ALL = 0xffff
     } RenderMode;
 
     typedef enum
@@ -61,7 +61,7 @@ namespace FTGL
         ALIGN_LEFT,
         ALIGN_CENTER,
         ALIGN_RIGHT,
-        ALIGN_JUSTIFY,
+        ALIGN_JUSTIFY
     } TextAlignment;
 }
 #else