[ox/model] Add default type params arg to buildTypeId

This commit is contained in:
Gary Talent 2023-02-03 00:22:11 -06:00
parent cd28fee8fd
commit 83589287bc

View File

@ -27,7 +27,7 @@ using FieldName = String;
using TypeParamPack = Vector<String>; using TypeParamPack = Vector<String>;
static constexpr auto buildTypeId(CRStringView name, int version, static constexpr auto buildTypeId(CRStringView name, int version,
const TypeParamPack &typeParams) noexcept { const TypeParamPack &typeParams = {}) noexcept {
String tp; String tp;
if (typeParams.size()) { if (typeParams.size()) {
tp = "#"; tp = "#";