rm StringSetEq

This commit is contained in:
James Cherry 2021-04-22 14:45:35 -10:00
parent f543340dfb
commit 610c38ee40
2 changed files with 0 additions and 13 deletions

View File

@ -22,11 +22,8 @@
namespace sta {
typedef Set<const char*, CharPtrLess> StringSet;
typedef Set<const char*> StringSetEq;
void
deleteContents(StringSet *strings);
void
deleteContents(StringSetEq *strings);
} // namespace

View File

@ -28,14 +28,4 @@ deleteContents(StringSet *strings)
}
}
void
deleteContents(StringSetEq *strings)
{
StringSetEq::Iterator iter(strings);
while (iter.hasNext()) {
const char *string = iter.next();
stringDelete(string);
}
}
} // namespace