diff --git a/src/util/stl-utils.h b/src/util/stl-utils.h index a1506f557a7..647073a2215 100644 --- a/src/util/stl-utils.h +++ b/src/util/stl-utils.h @@ -97,8 +97,6 @@ void CopySetToVector(const std::set &s, std::vector *v) { template void CopySetToVector(const unordered_set &s, std::vector *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::const_iterator siter = s.begin(), send = s.end();