eolian_cxx: no need to normalize

This commit is contained in:
Daniel Kolesa 2014-07-01 16:10:21 +01:00
parent e1e8859aa0
commit a1588f66e5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ type_lookup(Eolian_Type type)
return "void";
// XXX add complex types implementation.
const char *tps = eolian_type_c_type_get(type);
std::string ret = normalize_spaces(safe_str(tps));
std::string ret = safe_str(tps);
::eina_stringshare_del(tps);
return ret;
}