Commit 92700dc3 authored by Piotr Tworek's avatar Piotr Tworek Committed by Commit Bot

IWYU in net/dns/dns_server_iterator.h.

The code uses size_t, so it needs to include stddef.h. This works
fine in default setup using libcxx, but fails with libstdc++.

Bug: 957519
Change-Id: Id6bca0bbc911253a3be9a67b01dc348e467490ef
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2489303Reviewed-by: default avatarEric Orth <ericorth@chromium.org>
Commit-Queue: Piotr Tworek <ptworek@vewd.com>
Cr-Commit-Position: refs/heads/master@{#819742}
parent 58abb08b
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#ifndef NET_DNS_DNS_SERVER_ITERATOR_H_ #ifndef NET_DNS_DNS_SERVER_ITERATOR_H_
#define NET_DNS_DNS_SERVER_ITERATOR_H_ #define NET_DNS_DNS_SERVER_ITERATOR_H_
#include <stddef.h>
#include <vector> #include <vector>
#include "net/base/net_export.h" #include "net/base/net_export.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment