Skip to content

Commit 042c3a0

Browse files
committed
self-review: fix missed typos
1 parent ee63c2e commit 042c3a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/unittests/Frontend/HLSLRootSignatureRangesTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace {
1515

1616
TEST(HLSLRootSignatureTest, NoOverlappingInsertTests) {
1717
// Ensures that there is never a reported overlap
18-
ResourceRange::IMap::Allocator Allocator;
18+
ResourceRange::MapT::Allocator Allocator;
1919
ResourceRange Range(Allocator);
2020

2121
RangeInfo A;
@@ -56,7 +56,7 @@ TEST(HLSLRootSignatureTest, NoOverlappingInsertTests) {
5656
TEST(HLSLRootSignatureTest, SingleOverlappingInsertTests) {
5757
// Ensures that we correctly report an overlap when we insert a range that
5858
// overlaps with one other range but does not cover (replace) it
59-
ResourceRange::IMap::Allocator Allocator;
59+
ResourceRange::MapT::Allocator Allocator;
6060
ResourceRange Range(Allocator);
6161

6262
RangeInfo A;
@@ -93,7 +93,7 @@ TEST(HLSLRootSignatureTest, MultipleOverlappingInsertTests) {
9393
// Ensures that we correctly report an overlap when inserted range
9494
// overlaps more than one range and it does not cover (replace) either
9595
// range. In this case it will just fill in the interval between the two
96-
ResourceRange::IMap::Allocator Allocator;
96+
ResourceRange::MapT::Allocator Allocator;
9797
ResourceRange Range(Allocator);
9898

9999
RangeInfo A;
@@ -128,7 +128,7 @@ TEST(HLSLRootSignatureTest, MultipleOverlappingInsertTests) {
128128
TEST(HLSLRootSignatureTest, CoverInsertTests) {
129129
// Ensures that we correctly report an overlap when inserted range
130130
// covers one or more ranges
131-
ResourceRange::IMap::Allocator Allocator;
131+
ResourceRange::MapT::Allocator Allocator;
132132
ResourceRange Range(Allocator);
133133

134134
RangeInfo A;

0 commit comments

Comments
 (0)