felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=66dade5604f8c124c0d9c2811439a2a8bbf2d5a1
commit 66dade5604f8c124c0d9c2811439a2a8bbf2d5a1 Author: Felipe Magno de Almeida <[email protected]> Date: Thu May 26 16:46:40 2016 -0300 eolian-cxx: Removed useless commented code --- src/lib/eolian_cxx/grammar/type_generator.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eolian_cxx/grammar/type_generator.hh b/src/lib/eolian_cxx/grammar/type_generator.hh index de01890..43cd1d2 100644 --- a/src/lib/eolian_cxx/grammar/type_generator.hh +++ b/src/lib/eolian_cxx/grammar/type_generator.hh @@ -76,7 +76,7 @@ operator<<(std::ostream& out, efl::eolian::grammar::c_type const& x) std::string res; for (auto rit = x._list.parts.rbegin(), last = x._list.parts.rend(); rit != last; ++rit) { - res = /*type_is_binding(*rit) ? (*rit).binding :*/ (*rit).native; + res = (*rit).native; } assert(!res.empty()); return out << res; --
