Skip to content

Commit 23be56e

Browse files
Ivan Murashovcopybara-github
authored andcommitted
IWYU: Add missing includes in span_forward_internal.h
In the CL https://crrev.com/c/6418567 used std::numeric_limits and size_t in the file base/containers/span_forward_internal.h, but corresponding includes were missed. Added missing includes for std::numeric_limits and size_t usage. Bug: 41455655 Change-Id: If9bd8dd3772ee707e220ff94bb322b776d0ecd3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6513124 Reviewed-by: Mark Mentovai <[email protected]> Commit-Queue: Ivan Murashov <[email protected]> Reviewed-by: Daniel Cheng <[email protected]> Cr-Commit-Position: refs/heads/main@{#1458258} NOKEYCHECK=True GitOrigin-RevId: 4a007f6c1a2f601a88262255c802e5b20edfd2a7
1 parent 41a3710 commit 23be56e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

containers/span_forward_internal.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
#ifndef BASE_CONTAINERS_SPAN_FORWARD_INTERNAL_H_
66
#define BASE_CONTAINERS_SPAN_FORWARD_INTERNAL_H_
77

8+
#include <stddef.h>
9+
10+
#include <limits>
11+
812
namespace base {
913

1014
// [span.syn]: Constants

0 commit comments

Comments
 (0)