cxx: Add strbuf to the list of recognized builtins

This commit is contained in:
Jean-Philippe Andre 2017-11-22 16:50:57 +09:00
parent 488c29febd
commit a597084db7
1 changed files with 6 additions and 0 deletions

View File

@ -134,6 +134,12 @@ struct visitor_generate
r.base_qualifier.qualifier ^= qualifier_info::is_ref;
return replace_base_type(r, " ::efl::eina::stringshare");
}}
, {"strbuf", nullptr, nullptr, nullptr, [&]
{
regular_type_def r = regular;
r.base_qualifier.qualifier ^= qualifier_info::is_ref;
return replace_base_type(r, " ::efl::eina::strbuf");
}}
/* FIXME: handle any_value_ptr */
, {"any_value", true, nullptr, nullptr, [&]
{