reorg to separate type handling

This commit is contained in:
Michael Davidsaver
2019-12-11 09:11:52 -08:00
parent 92c513d6dd
commit 50963f0a3e
6 changed files with 484 additions and 470 deletions
+8
View File
@@ -342,4 +342,12 @@ unsigned short as_str<unsigned short>::op(const char *s)
return ret;
}
}
void indent(std::ostream& strm, unsigned level) {
for(auto i : range(level)) {
(void)i;
strm<<" ";
}
}
}}