summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2016-05-26 16:46:40 -0300
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2016-05-26 16:46:40 -0300
commit66dade5604f8c124c0d9c2811439a2a8bbf2d5a1 (patch)
treef33543a2d6fa75ff19fb4fdcfb3f1159f35d5a07
parent396fd5e3e161e6717ffa16697f8a7647fbeb4973 (diff)
downloadefl-66dade5604f8c124c0d9c2811439a2a8bbf2d5a1.tar.gz
eolian-cxx: Removed useless commented code
-rw-r--r--src/lib/eolian_cxx/grammar/type_generator.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eolian_cxx/grammar/type_generator.hh b/src/lib/eolian_cxx/grammar/type_generator.hh
index de01890c98..43cd1d2c34 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;