From a1588f66e55966fb278f7c951e88fc5c83c8e81c Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Tue, 1 Jul 2014 16:10:21 +0100 Subject: [PATCH] eolian_cxx: no need to normalize --- src/bin/eolian_cxx/type_lookup.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/eolian_cxx/type_lookup.hh b/src/bin/eolian_cxx/type_lookup.hh index a85be2dfac..e185cd05ed 100644 --- a/src/bin/eolian_cxx/type_lookup.hh +++ b/src/bin/eolian_cxx/type_lookup.hh @@ -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; }