Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 7c2926b

Browse files
jpienaartensorflower-gardener
authored andcommitted
Fully qualify DenseMap.
PiperOrigin-RevId: 261325481
1 parent bda264f commit 7c2926b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/Support/StorageUniquer.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include "mlir/Support/StorageUniquer.h"
1919
#include "mlir/Support/LLVM.h"
20+
#include "llvm/ADT/DenseMap.h"
2021
#include "llvm/Support/Allocator.h"
2122
#include "llvm/Support/RWMutex.h"
2223

@@ -166,7 +167,7 @@ struct StorageUniquerImpl {
166167
StorageTypeSet storageTypes;
167168

168169
// Unique types with just the kind.
169-
DenseMap<unsigned, BaseStorage *> simpleTypes;
170+
llvm::DenseMap<unsigned, BaseStorage *> simpleTypes;
170171

171172
// Allocator to use when constructing derived type instances.
172173
StorageUniquer::StorageAllocator allocator;

0 commit comments

Comments
 (0)