eolian cxx: free state on exit

This commit is contained in:
Daniel Kolesa 2017-12-05 16:47:19 +01:00
parent 8a1f93f698
commit fd868bff34
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ struct options_type
bool main_header;
options_type() : main_header(false) {}
~options_type()
{
eolian_free(state);
}
};
static efl::eina::log_domain domain("eolian_cxx");