dbus/dbus dbus-list.c,1.21,1.22
John Palmieri
johnp at freedesktop.org
Wed Nov 30 13:23:14 PST 2005
Update of /cvs/dbus/dbus/dbus
In directory gabe:/tmp/cvs-serv28143/dbus
Modified Files:
dbus-list.c
Log Message:
* dbus/dbus-list.c (_dbus_list_insert_after_link, _dbus_list_insert_after):
remove #ifdef DBUS_BUILD_TESTS since we use these methods in production code
Index: dbus-list.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-list.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- dbus-list.c 25 Feb 2005 22:03:30 -0000 1.21
+++ dbus-list.c 30 Nov 2005 21:23:12 -0000 1.22
@@ -346,7 +346,6 @@
}
#endif /* DBUS_BUILD_TESTS */
-#ifdef DBUS_BUILD_TESTS
/**
* Inserts data into the list after the given existing link.
*
@@ -375,7 +374,6 @@
return TRUE;
}
-#endif /* DBUS_BUILD_TESTS */
/**
* Inserts a link into the list before the given existing link.
@@ -395,7 +393,6 @@
link_before (list, before_this_link, link);
}
-#ifdef DBUS_BUILD_TESTS
/**
* Inserts a link into the list after the given existing link.
*
@@ -413,7 +410,6 @@
else
link_after (list, after_this_link, link);
}
-#endif /* DBUS_BUILD_TESTS */
/**
* Removes a value from the list. Only removes the
More information about the dbus-commit
mailing list