diff --git a/modules/audio_processing/test/test_utils.h b/modules/audio_processing/test/test_utils.h index 04e980fb64..cc36f9a799 100644 --- a/modules/audio_processing/test/test_utils.h +++ b/modules/audio_processing/test/test_utils.h @@ -16,7 +16,6 @@ #include #include #include -#include // no-presubmit-check TODO(webrtc:8982) #include #include @@ -149,22 +148,6 @@ float ComputeSNR(const T* ref, const T* test, size_t length, float* variance) { return snr; } -// Returns a vector parsed from whitespace delimited values in to_parse, -// or an empty vector if the string could not be parsed. -template -std::vector ParseList(absl::string_view to_parse) { - std::vector values; - - std::istringstream str( // no-presubmit-check TODO(webrtc:8982) - std::string{to_parse}); - std::copy( - std::istream_iterator(str), // no-presubmit-check TODO(webrtc:8982) - std::istream_iterator(), // no-presubmit-check TODO(webrtc:8982) - std::back_inserter(values)); - - return values; -} - } // namespace webrtc #endif // MODULES_AUDIO_PROCESSING_TEST_TEST_UTILS_H_