cxx: Fix one conversion to Eina_Value

This commit is contained in:
Jean-Philippe Andre 2017-11-28 21:17:32 +09:00
parent 08918e3285
commit 725026a4ba
1 changed files with 4 additions and 0 deletions

View File

@ -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;