Squashed 'deps/nostalgia/' changes from 7d9f363b..dd5d1bfb

dd5d1bfb [ox/model] Fix type params in type ID

git-subtree-dir: deps/nostalgia
git-subtree-split: dd5d1bfbf517137cef5cb26eeb6a56045da2124b
This commit is contained in:
Gary Talent 2024-05-30 23:44:27 -05:00
parent 76b8b03a2c
commit e3cd379bb4

View File

@ -43,7 +43,7 @@ static constexpr auto buildTypeId(
for (const auto &p : typeParams) { for (const auto &p : typeParams) {
tp += p + ","; tp += p + ",";
} }
tp.resize(tp.len()); tp.resize(tp.len() - 1);
tp += "#"; tp += "#";
} }
return ox::sfmt("{}{};{}", name, tp, version); return ox::sfmt("{}{};{}", name, tp, version);