comment out stl printing

This commit is contained in:
2024-03-24 10:07:42 +01:00
parent aceb3f6e00
commit 665de81587

View File

@@ -296,15 +296,15 @@ int test_templates() {
map[2].push_back(2); map[2].push_back(2);
cgistd::string s = "hello world \n"; cgistd::string s = "hello world \n";
writestr_no_yield(s.c_str()); // writestr_no_yield(s.c_str());
cgistd::rope r = "e"; cgistd::rope r = "e";
r.push_back('e'); r.push_back('e');
r.append("asd"); r.append("asd");
for (char c: r) { for (char c: r) {
write_serial_no_yield(c); // write_serial_no_yield(c);
} }
write_serial('\n'); // write_serial('\n');
return 0; return 0;
} }