summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-11-28 21:17:32 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-12-05 15:01:45 +0900
commit725026a4bacfe6ddc38101e1f96c5c66711a304b (patch)
tree113b17a3ffe31bd0e42c21267841da4477de1625
parent08918e3285e75d6eb89df2848854a4b2d4eba3b8 (diff)
downloadefl-725026a4bacfe6ddc38101e1f96c5c66711a304b.tar.gz
cxx: Fix one conversion to Eina_Value
-rw-r--r--src/bindings/cxx/eo_cxx/eo_cxx_interop.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh b/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh
index ffc486e1e3..a83688a3d9 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<const Eina_Value, in_traits<eina::value_view const&>::type>)
+{
+ return *v.native_handle();
+}
inline Eina_Bool convert_to_c_impl( bool b, tag<Eina_Bool, bool>)
{
return b;