remove incomplete code
This commit is contained in:
parent
92f0b45d3c
commit
64133302c6
1 changed files with 3 additions and 4 deletions
|
@ -30,14 +30,13 @@ namespace mstch {
|
||||||
|
|
||||||
template<> inline
|
template<> inline
|
||||||
std::string render_section::operator()<lambda>(const lambda& lam) const {
|
std::string render_section::operator()<lambda>(const lambda& lam) const {
|
||||||
std::string section_str;
|
return "";
|
||||||
|
/*std::string section_str;
|
||||||
for(auto& token: section)
|
for(auto& token: section)
|
||||||
section_str += token.raw();
|
section_str += token.raw();
|
||||||
return lam(section_str, [this](const std::string& str) {
|
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});
|
return ctx.render(template_type{str});
|
||||||
});
|
});*/
|
||||||
}
|
}
|
||||||
|
|
||||||
template<> inline
|
template<> inline
|
||||||
|
|
Loading…
Reference in a new issue