[ox] MSVC fixes

This commit is contained in:
2023-11-11 17:45:09 -06:00
parent 868adae053
commit 7ee52db6a1
8 changed files with 70 additions and 24 deletions

View File

@@ -187,9 +187,16 @@ class OrganicClawWriter {
template<typename T>
constexpr ox::Error setTypeInfo(
const char* = T::TypeName,
int = T::TypeVersion,
const Vector<String>& = {},
std::size_t = ModelFieldCount_v<T>) noexcept {
int = T::TypeVersion) noexcept {
return {};
}
template<typename T>
constexpr ox::Error setTypeInfo(
const char*,
int,
const Vector<String>&,
std::size_t) noexcept {
return {};
}