eolian_cxx: no need to normalize
authorDaniel Kolesa <d.kolesa@samsung.com>
Tue, 1 Jul 2014 15:10:21 +0000 (16:10 +0100)
committerDaniel Kolesa <d.kolesa@samsung.com>
Tue, 1 Jul 2014 15:10:21 +0000 (16:10 +0100)
src/bin/eolian_cxx/type_lookup.hh

index a85be2d..e185cd0 100644 (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;
 }