From e38e4f6e48d13dc6958a5308573256d768f78315 Mon Sep 17 00:00:00 2001 From: mostynb Date: Thu, 12 May 2016 01:08:20 -0700 Subject: [PATCH] IWYU: errno.h in base/logging.h Without this, some toolchains may fail to build base/checks.cc because errno is undefined. NOTRY=true Review-Url: https://codereview.webrtc.org/1971513002 Cr-Commit-Position: refs/heads/master@{#12696} --- webrtc/base/logging.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/base/logging.h b/webrtc/base/logging.h index 802dfa78d2..631c6384d3 100644 --- a/webrtc/base/logging.h +++ b/webrtc/base/logging.h @@ -46,6 +46,8 @@ #ifndef WEBRTC_BASE_LOGGING_H_ #define WEBRTC_BASE_LOGGING_H_ +#include + #include #include #include