summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sousa <vitorsousasilva@gmail.com>2016-03-01 15:20:06 -0300
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-03-03 18:58:11 +0000
commitf57d4b9a3c769d077cf68a46a3d564b38cc04fa7 (patch)
tree2c4a0b078cc15199545f107cb6adf039ef6d7cc8
parent32e0b60bb4c08225a684e4d4a948e94c122d3baa (diff)
downloadefl-devs/q66/eolian_next.tar.gz
eolian_cxx: Fix C++ compilation with new Eolian_Type_Type valuesdevs/q66/eolian_next
-rw-r--r--src/bin/eolian_cxx/type_lookup.hh2
1 files changed, 1 insertions, 1 deletions
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)