mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-08-29 01:14:06 +02:00
rm StringSetEq
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user