File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ enum class TypeRefKind {
48
48
49
49
#define FIND_OR_CREATE_TYPEREF (Allocator, TypeRefTy, ...) \
50
50
auto ID = Profile(__VA_ARGS__); \
51
- const auto Entry = Allocator.DEPENDENT_TEMPLATE TypeRefTy##s.find(ID); \
52
- if (Entry != Allocator.DEPENDENT_TEMPLATE TypeRefTy##s.end()) \
51
+ const auto Entry = Allocator.TypeRefTy##s.find(ID); \
52
+ if (Entry != Allocator.TypeRefTy##s.end()) \
53
53
return Entry->second; \
54
54
const auto TR = \
55
55
Allocator.DEPENDENT_TEMPLATE makeTypeRef<TypeRefTy>(__VA_ARGS__); \
56
- Allocator.DEPENDENT_TEMPLATE TypeRefTy##s.insert({ID, TR}); \
56
+ Allocator.TypeRefTy##s.insert({ID, TR}); \
57
57
return TR;
58
58
59
59
// / An identifier containing the unique bit pattern made up of all of the
You can’t perform that action at this time.
0 commit comments