From 725026a4bacfe6ddc38101e1f96c5c66711a304b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 28 Nov 2017 21:17:32 +0900 Subject: [PATCH] cxx: Fix one conversion to Eina_Value --- src/bindings/cxx/eo_cxx/eo_cxx_interop.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh b/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh index ffc486e..a83688a 100644 --- a/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh +++ b/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh @@ -427,6 +427,10 @@ inline Eina_Value const& convert_to_c_impl( ::efl::eina::value_view const& v, ta { return *v.native_handle(); } +inline const Eina_Value convert_to_c_impl( ::efl::eina::value_view const& v, tag::type>) +{ + return *v.native_handle(); +} inline Eina_Bool convert_to_c_impl( bool b, tag) { return b; -- 2.7.4