diff --git a/deps/ox/src/ox/model/desctypes.hpp b/deps/ox/src/ox/model/desctypes.hpp index fc44ffd6..f8ba8eaf 100644 --- a/deps/ox/src/ox/model/desctypes.hpp +++ b/deps/ox/src/ox/model/desctypes.hpp @@ -30,12 +30,12 @@ static constexpr auto buildTypeId(CRStringView name, int version, const TypeParamPack &typeParams) noexcept { String tp; if (typeParams.size()) { - tp = "<"; + tp = "#"; for (const auto &p : typeParams) { tp += p + ","; } tp = tp.substr(0, tp.len() - 1); - tp += ">"; + tp += "#"; } return ox::sfmt("{}{};{}", name, tp, version); }