remove incomplete code

This commit is contained in:
Daniel Sipka 2015-04-22 12:01:38 +02:00
parent 92f0b45d3c
commit 64133302c6

View File

@ -30,14 +30,13 @@ namespace mstch {
template<> inline
std::string render_section::operator()<lambda>(const lambda& lam) const {
std::string section_str;
return "";
/*std::string section_str;
for(auto& token: section)
section_str += token.raw();
return lam(section_str, [this](const std::string& str) {
std::cout << str << std::endl;
std::cout << ctx.render(template_type{str}) << std::endl;
return ctx.render(template_type{str});
});
});*/
}
template<> inline