summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2017-09-22 22:50:50 +0200
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2017-09-22 22:52:18 +0200
commite4cd67c7d6751dfe466a347e21d42ba2d7cbbc9f (patch)
tree880702fb56478efa16b69d9d3ee9536d453f1b92
parent6587b19e778cf5415a8d201f1ab9993611254255 (diff)
downloadefl-e4cd67c7d6751dfe466a347e21d42ba2d7cbbc9f.tar.gz
eolian cxx: rename generic_value to any_value
-rw-r--r--src/lib/eolian_cxx/grammar/type_impl.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/eolian_cxx/grammar/type_impl.hpp b/src/lib/eolian_cxx/grammar/type_impl.hpp
index 38d0bb3bb5..bb61980dd9 100644
--- a/src/lib/eolian_cxx/grammar/type_impl.hpp
+++ b/src/lib/eolian_cxx/grammar/type_impl.hpp
@@ -116,11 +116,12 @@ struct visitor_generate
r.base_qualifier.qualifier ^= qualifier_info::is_ref;
return replace_base_type(r, " ::efl::eina::stringshare");
}}
- , {"generic_value", true, nullptr, nullptr, [&]
+ /* FIXME: handle any_value_ptr */
+ , {"any_value", true, nullptr, nullptr, [&]
{
return regular_type_def{" ::efl::eina::value", regular.base_qualifier ^ qualifier_info::is_ref, {}};
}}
- , {"generic_value", false, nullptr, nullptr, [&]
+ , {"any_value", false, nullptr, nullptr, [&]
{ return regular_type_def{" ::efl::eina::value_view", regular.base_qualifier, {}};
}}
};