Stop using std::tr1
It's all in std now. Bug: b/67839180 Change-Id: I95fc78e87055f5f7456e4fc1a80779e29e98db3d Reviewed-on: https://webrtc-review.googlesource.com/14642 Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20400}
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
#include "test/gtest.h"
|
||||
#include "test/testsupport/fileutils.h"
|
||||
|
||||
using ::std::tr1::get;
|
||||
using ::std::get;
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
||||
@ -21,8 +21,7 @@ namespace webrtc {
|
||||
|
||||
// Define coding parameter as
|
||||
// <channels, bit_rate, file_name, extension, if_save_output>.
|
||||
typedef std::tr1::tuple<size_t, int, std::string, std::string, bool>
|
||||
coding_param;
|
||||
typedef std::tuple<size_t, int, std::string, std::string, bool> coding_param;
|
||||
|
||||
class AudioCodecSpeedTest : public testing::TestWithParam<coding_param> {
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user