commit | 6a489f22c71bc332886f76b493eead7551fc17fe | [log] [tgz] |
---|---|---|
author | Mirko Bonadei <mbonadei@webrtc.org> | Tue Apr 09 15:11:12 2019 +0200 |
committer | Commit Bot <commit-bot@chromium.org> | Tue Apr 09 17:18:20 2019 +0000 |
tree | d6c7fd756e1b0d992070f1944bd5e9a372edf242 | |
parent | a857698d549df4977d38555af220e7839e484cfc [diff] [blame] |
Fully qualify googletest symbols. Semi-automatically created with: git grep -l " testing::" | xargs sed -i "s/ testing::/ ::testing::/g" git grep -l "(testing::" | xargs sed -i "s/(testing::/(::testing::/g" git cl format After this, two .cc files failed to compile and I have fixed them manually. Bug: webrtc:10523 Change-Id: I4741d3bcedc831b6c5fdc04485678617eb4ce031 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/132018 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27526}
diff --git a/common_audio/signal_processing/signal_processing_unittest.cc b/common_audio/signal_processing/signal_processing_unittest.cc index aeaf97b..0e316b9 100644 --- a/common_audio/signal_processing/signal_processing_unittest.cc +++ b/common_audio/signal_processing/signal_processing_unittest.cc
@@ -25,7 +25,7 @@ -3333, 345}; -class SplTest : public testing::Test { +class SplTest : public ::testing::Test { protected: SplTest() { WebRtcSpl_Init(); } ~SplTest() override {}