From 6baee78bc9c72e96e4600bc17ccfb476dd558583 Mon Sep 17 00:00:00 2001 From: hugoh Date: Thu, 8 Jun 2017 16:38:40 -0700 Subject: [PATCH] Add missing #include in string_to_number.cc One of our toolchains does not expose |errno| in the global namespace. BUG=none Review-Url: https://codereview.webrtc.org/2926273002 Cr-Commit-Position: refs/heads/master@{#18506} --- webrtc/base/string_to_number.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/base/string_to_number.cc b/webrtc/base/string_to_number.cc index f8809268a2..b8e969daa4 100644 --- a/webrtc/base/string_to_number.cc +++ b/webrtc/base/string_to_number.cc @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include #include #include "webrtc/base/string_to_number.h"