[ox] Rename ValErr to Result

This commit is contained in:
2020-10-16 19:43:10 -05:00
parent faadcae7e9
commit 6b720042d0
23 changed files with 68 additions and 68 deletions

View File

@@ -228,7 +228,7 @@ void MetalClawWriter::setTypeInfo(const char*, int fields) {
}
template<typename T>
ValErr<Vector<char>> writeMC(T *val) {
Result<Vector<char>> writeMC(T *val) {
Vector<char> buff(10 * units::MB);
MetalClawWriter writer(bit_cast<uint8_t*>(buff.data()), buff.size());
oxReturnError(model(&writer, val));