Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needing to mention the size.
llvm-svn: 215869
This commit is contained in:
@@ -249,7 +249,7 @@ ModuleManager::~ModuleManager() {
|
||||
void
|
||||
ModuleManager::visit(bool (*Visitor)(ModuleFile &M, void *UserData),
|
||||
void *UserData,
|
||||
llvm::SmallPtrSet<ModuleFile *, 4> *ModuleFilesHit) {
|
||||
llvm::SmallPtrSetImpl<ModuleFile *> *ModuleFilesHit) {
|
||||
// If the visitation order vector is the wrong size, recompute the order.
|
||||
if (VisitOrder.size() != Chain.size()) {
|
||||
unsigned N = size();
|
||||
|
||||
Reference in New Issue
Block a user