[ox/model] Harmonize make the interface for walking over models

This commit is contained in:
2020-04-09 22:49:56 -05:00
parent a4000f6497
commit 5d95b188d8
17 changed files with 376 additions and 254 deletions

View File

@@ -68,13 +68,14 @@ class MetalClawWriter {
std::size_t size();
static constexpr OpType opType() {
static constexpr auto opType() {
return OpType::Write;
}
private:
template<typename I>
Error appendInteger(I val);
};
template<std::size_t L>