diff options
author | rbuj <[email protected]> | 2020-02-29 09:45:27 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-03-12 14:15:23 +0100 |
commit | 646eec19395cc98a4491c7ea10f75f93a1ad3311 (patch) | |
tree | e6597176130a631c0d8f44998031b424500bc139 /src/glib-utils.c | |
parent | 21f37c372238610629200f628d9a2eff22d65653 (diff) | |
download | engrampa-646eec19395cc98a4491c7ea10f75f93a1ad3311.tar.bz2 engrampa-646eec19395cc98a4491c7ea10f75f93a1ad3311.tar.xz |
glib-utils: remove g_ptr_array_free_full
Diffstat (limited to 'src/glib-utils.c')
-rw-r--r-- | src/glib-utils.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/glib-utils.c b/src/glib-utils.c index ed42dd7..f17ddb2 100644 --- a/src/glib-utils.c +++ b/src/glib-utils.c @@ -476,16 +476,6 @@ debug (const char *file, } -void -g_ptr_array_free_full (GPtrArray *array, - GFunc free_func, - gpointer user_data) -{ - g_ptr_array_foreach (array, free_func, user_data); - g_ptr_array_free (array, TRUE); -} - - GHashTable *static_strings = NULL; |