From e5118f163d2f6eb70375e6394156b23eb1835d2d Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Wed, 30 Nov 2005 21:23:12 +0000 Subject: * 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 --- dbus/dbus-list.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'dbus/dbus-list.c') diff --git a/dbus/dbus-list.c b/dbus/dbus-list.c index 7389c268..15911743 100644 --- a/dbus/dbus-list.c +++ b/dbus/dbus-list.c @@ -346,7 +346,6 @@ _dbus_list_insert_before (DBusList **list, } #endif /* DBUS_BUILD_TESTS */ -#ifdef DBUS_BUILD_TESTS /** * Inserts data into the list after the given existing link. * @@ -375,7 +374,6 @@ _dbus_list_insert_after (DBusList **list, return TRUE; } -#endif /* DBUS_BUILD_TESTS */ /** * Inserts a link into the list before the given existing link. @@ -395,7 +393,6 @@ _dbus_list_insert_before_link (DBusList **list, 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 @@ _dbus_list_insert_after_link (DBusList **list, else link_after (list, after_this_link, link); } -#endif /* DBUS_BUILD_TESTS */ /** * Removes a value from the list. Only removes the -- cgit