Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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