Update release

This commit is contained in:
vczh
2021-10-18 15:05:19 -07:00
parent f2f4b32a60
commit f1596a7f06
227 changed files with 9 additions and 225 deletions

View File

@@ -1362,6 +1362,7 @@ Serizliation (Metadata)
case WfInsType::F4: reader << value.f4Value; break;
case WfInsType::F8: reader << value.f8Value; break;
case WfInsType::String: reader << value.stringValue; break;
default:;
}
}
@@ -1386,6 +1387,7 @@ Serizliation (Metadata)
case WfInsType::F4: writer << value.f4Value; break;
case WfInsType::F8: writer << value.f8Value; break;
case WfInsType::String: writer << value.stringValue; break;
default:;
}
}
};