From 934cfb621cf19bdce0ead54de3910464564c7666 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Fri, 29 May 2015 11:10:41 +0100 Subject: [PATCH] eo_cxx: remove unused parameter --- src/bindings/eo_cxx/eo_ops.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bindings/eo_cxx/eo_ops.hh b/src/bindings/eo_cxx/eo_ops.hh index 89ed72d25c..47d920d31c 100644 --- a/src/bindings/eo_cxx/eo_ops.hh +++ b/src/bindings/eo_cxx/eo_ops.hh @@ -65,8 +65,7 @@ dbg_info_get(const Eo *obj, Eo_Dbg_Info *info) } inline void -base_data_set(const Eo *obj, const char *key, const void *data, - eo_key_data_free_func free_func = NULL) +base_data_set(const Eo *obj, const char *key, const void *data) { eo_do(obj, eo_key_data_set(key, data)); }