From 26d61430060e54af819da6759a6d854e42b3e9a2 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 17 Dec 2022 13:38:59 -0600 Subject: [PATCH] [ox/model] Change <> markers for type params to ## in type IDs to deal with NTFS' ineptitude --- deps/ox/src/ox/model/desctypes.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }