[ox/model] Fix type params in type ID

(synced from dd5d1bfbf5)
This commit is contained in:
2024-05-30 23:43:49 -05:00
parent b42c84b3d1
commit 9ff491b5e5
+1 -1
View File
@@ -43,7 +43,7 @@ static constexpr auto buildTypeId(
for (const auto &p : typeParams) {
tp += p + ",";
}
tp.resize(tp.len());
tp.resize(tp.len() - 1);
tp += "#";
}
return ox::sfmt("{}{};{}", name, tp, version);