mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00
Add missing header for dchecked_cast on UWP
Add missing #include to fix some build error on `winuwp` with some code using rtc::dchecked_cast<> under an `#ifdef (WINUWP)`, resulting in an undefined symbol error. Bug: webrtc:11194 Change-Id: Iad9e74c3e92ed6cf1461f34cdd9329d13f5d62e6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161721 Commit-Queue: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30224}
This commit is contained in:
parent
41d96d26ee
commit
081f7a3498
1 changed files with 1 additions and 2 deletions
|
@ -14,8 +14,6 @@
|
|||
#include <sys/time.h>
|
||||
#if defined(WEBRTC_MAC)
|
||||
#include <mach/mach_time.h>
|
||||
|
||||
#include "rtc_base/numerics/safe_conversions.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
@ -30,6 +28,7 @@
|
|||
#endif
|
||||
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/numerics/safe_conversions.h"
|
||||
#include "rtc_base/time_utils.h"
|
||||
|
||||
namespace rtc {
|
||||
|
|
Loading…
Reference in a new issue