Skip to content

Commit

Permalink
rm StringSetEq
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcherry56 committed Apr 23, 2021
1 parent f543340 commit 610c38e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
3 changes: 0 additions & 3 deletions include/sta/StringSet.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 0 additions & 10 deletions util/StringSet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 610c38e

Please sign in to comment.