aboutsummaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authorBertrand SIMONNET <bsimonnet@google.com>2015-07-15 10:14:34 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-15 23:15:56 +0000
commitb57c2eebc4050087576f55e02deb47b0839fb467 (patch)
tree8a28eddd111262a0c3a95107b62d4caf6e4a9d84 /chromeos
parentd4c955c70812b91796ace5cfecfa181f62f6a348 (diff)
downloadplatform_external_libbrillo-b57c2eebc4050087576f55e02deb47b0839fb467.tar.gz
platform_external_libbrillo-b57c2eebc4050087576f55e02deb47b0839fb467.tar.bz2
platform_external_libbrillo-b57c2eebc4050087576f55e02deb47b0839fb467.zip
libchromeos: Include numeric for std::iota.
BUG=None TEST=cros_run_unit_tests --board=gizmo libchromeos. Change-Id: I9fb3b8ce6c6f5938e39fb1bd7ede1ce2a18c9fec Reviewed-on: https://chromium-review.googlesource.com/285850 Tested-by: Bertrand Simonnet <bsimonnet@chromium.org> Reviewed-by: Alex Vakulenko <avakulenko@chromium.org> Trybot-Ready: Bertrand Simonnet <bsimonnet@chromium.org> Commit-Queue: Bertrand Simonnet <bsimonnet@chromium.org>
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/data_encoding_unittest.cc1
-rw-r--r--chromeos/http/http_utils_unittest.cc1
-rw-r--r--chromeos/streams/file_stream_unittest.cc1
-rw-r--r--chromeos/streams/memory_stream_unittest.cc1
4 files changed, 4 insertions, 0 deletions
diff --git a/chromeos/data_encoding_unittest.cc b/chromeos/data_encoding_unittest.cc
index 549c478..70bd748 100644
--- a/chromeos/data_encoding_unittest.cc
+++ b/chromeos/data_encoding_unittest.cc
@@ -5,6 +5,7 @@
#include <chromeos/data_encoding.h>
#include <algorithm>
+#include <numeric>
#include <gtest/gtest.h>
diff --git a/chromeos/http/http_utils_unittest.cc b/chromeos/http/http_utils_unittest.cc
index c006b10..3e9a7c8 100644
--- a/chromeos/http/http_utils_unittest.cc
+++ b/chromeos/http/http_utils_unittest.cc
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <numeric>
#include <string>
#include <vector>
diff --git a/chromeos/streams/file_stream_unittest.cc b/chromeos/streams/file_stream_unittest.cc
index 0ca8acb..968ed88 100644
--- a/chromeos/streams/file_stream_unittest.cc
+++ b/chromeos/streams/file_stream_unittest.cc
@@ -5,6 +5,7 @@
#include <chromeos/streams/file_stream.h>
#include <limits>
+#include <numeric>
#include <string>
#include <sys/stat.h>
#include <vector>
diff --git a/chromeos/streams/memory_stream_unittest.cc b/chromeos/streams/memory_stream_unittest.cc
index a16b4cf..423681a 100644
--- a/chromeos/streams/memory_stream_unittest.cc
+++ b/chromeos/streams/memory_stream_unittest.cc
@@ -6,6 +6,7 @@
#include <algorithm>
#include <limits>
+#include <numeric>
#include <string>
#include <vector>