[pygobject] PyGObjectFlags: Remove a trailing comma on the enum.



commit fd3935541ab4baddb504e000ec659b80923afa13
Author: Murray Cumming <murrayc murrayc com>
Date:   Tue Dec 2 19:55:51 2014 +0100

    PyGObjectFlags: Remove a trailing comma on the enum.
    
    Because this produces a g++ pedantic warning.

 gi/pygobject.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gi/pygobject.h b/gi/pygobject.h
index 85359a5..9e45dde 100644
--- a/gi/pygobject.h
+++ b/gi/pygobject.h
@@ -25,7 +25,7 @@ struct _PyGClosure {
 typedef enum {
     PYGOBJECT_USING_TOGGLE_REF = 1 << 0,
     PYGOBJECT_IS_FLOATING_REF = 1 << 1,
-    PYGOBJECT_GOBJECT_WAS_FLOATING = 1 << 2,
+    PYGOBJECT_GOBJECT_WAS_FLOATING = 1 << 2
 } PyGObjectFlags;
 
   /* closures is just an alias for what is found in the


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]