From f57d4b9a3c769d077cf68a46a3d564b38cc04fa7 Mon Sep 17 00:00:00 2001 From: Vitor Sousa Date: Tue, 1 Mar 2016 15:20:06 -0300 Subject: [PATCH] eolian_cxx: Fix C++ compilation with new Eolian_Type_Type values --- src/bin/eolian_cxx/type_lookup.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/eolian_cxx/type_lookup.hh b/src/bin/eolian_cxx/type_lookup.hh index 38b683d468..7f73a5edda 100644 --- a/src/bin/eolian_cxx/type_lookup.hh +++ b/src/bin/eolian_cxx/type_lookup.hh @@ -49,7 +49,7 @@ type_from_eolian(Eolian_Type const& type) efl::eolian::eolian_type x; Eolian_Type_Type tpt = ::eolian_type_type_get(&type); - if (tpt == EOLIAN_TYPE_POINTER || tpt == EOLIAN_TYPE_ALIAS || tpt == EOLIAN_TYPE_REGULAR) + if (tpt == EOLIAN_TYPE_POINTER || tpt == EOLIAN_TYPE_REGULAR) { Eolian_Type const* base_type = ::eolian_type_base_type_get(&type); if (base_type && ::eolian_type_type_get(base_type) == EOLIAN_TYPE_CLASS)