Skip to content

Commit

Permalink
Remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhan committed Jun 27, 2019
1 parent 533469c commit cb802af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util/stl-utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ void CopySetToVector(const std::set<T> &s, std::vector<T> *v) {

template<class T>
void CopySetToVector(const unordered_set<T> &s, std::vector<T> *v) {
// adds members of s to v, in sorted order from lowest to highest
// (because the set was in sorted order).
KALDI_ASSERT(v != NULL);
v->resize(s.size());
typename unordered_set<T>::const_iterator siter = s.begin(), send = s.end();
Expand Down

0 comments on commit cb802af

Please sign in to comment.