| Index: webrtc/p2p/base/icetransportinternal.h
|
| diff --git a/webrtc/p2p/base/icetransportinternal.h b/webrtc/p2p/base/icetransportinternal.h
|
| index 1391cc9c96908dadd558b1d1f462e0c5e199685a..074a34a15d292214d2495a55731d93b72c3b40e3 100644
|
| --- a/webrtc/p2p/base/icetransportinternal.h
|
| +++ b/webrtc/p2p/base/icetransportinternal.h
|
| @@ -13,6 +13,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "webrtc/base/stringencode.h"
|
| #include "webrtc/p2p/base/candidate.h"
|
| #include "webrtc/p2p/base/candidatepairinterface.h"
|
| #include "webrtc/p2p/base/jseptransport.h"
|
| @@ -143,7 +144,7 @@ class IceTransportInternal : public rtc::PacketTransportInternal {
|
|
|
| // Debugging description of this transport.
|
| std::string debug_name() const override {
|
| - return transport_name() + " " + std::to_string(component());
|
| + return transport_name() + " " + rtc::ToString(component());
|
| }
|
| };
|
|
|
|
|