Remove C++ comment
authorMatthias Clasen <matthiasc@src.gnome.org>
Mon, 30 Jan 2006 04:19:07 +0000 (04:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 30 Jan 2006 04:19:07 +0000 (04:19 +0000)
gobject/ChangeLog
gobject/gclosure.c
tests/refcount/signals.c

index c580f99..eab200c 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * gclosure.c: Remove C++ comment.
+
 2006-01-27  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.9.5 ===
index 9163709..e6568e7 100644 (file)
@@ -68,7 +68,7 @@ G_STMT_START {
 #define DEC(_closure, _field)                   CHANGE_FIELD (_closure, _field, -=,     1, TRUE,     (void),     (void) )
 #define DEC_ASSIGN(_closure, _field, _newv)     CHANGE_FIELD (_closure, _field, -=,     1, TRUE,     (void), *(_newv) = )
 
-#if 0   // for non-thread-safe closures
+#if 0   /* for non-thread-safe closures */
 #define SWAP(cl,f,v,o)     (void) (*(o) = cl->f, cl->f = v)
 #define SET(cl,f,v)        (void) (cl->f = v)
 #define INC(cl,f)          (void) (cl->f += 1)
index 6cf1afb..953b9b4 100644 (file)
@@ -228,7 +228,7 @@ notify (GObject *object, GParamSpec *spec, gpointer user_data)
   gint value;
 
   g_object_get (object, "test-prop", &value, NULL);
-  //g_print ("+ %d", value);
+  /*g_print ("+ %d", value);*/
 }
 
 int