[ox/model] Fix FieldCounter to count CString fields

This commit is contained in:
Gary Talent 2023-01-25 00:21:23 -06:00
parent 4cb6992178
commit e1fa48ea2f

View File

@ -47,6 +47,7 @@ class FieldCounter {
template<typename ...Args> template<typename ...Args>
constexpr Error fieldCString(Args&&...) noexcept { constexpr Error fieldCString(Args&&...) noexcept {
++fields;
return OxError(0); return OxError(0);
} }