26 lines
836 B
Diff
26 lines
836 B
Diff
From a9d986203bcfbaab84f270c1dc6c3abb4c450ee1 Mon Sep 17 00:00:00 2001
|
|
From: Stephan Hartmann <stha09@googlemail.com>
|
|
Date: Fri, 17 Sep 2021 14:57:33 +0000
|
|
Subject: [PATCH] IWYU: add stddef.h for size_t in WindowManager
|
|
|
|
---
|
|
net/third_party/quiche/src/http2/adapter/window_manager.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/net/third_party/quiche/src/http2/adapter/window_manager.h b/net/third_party/quiche/src/http2/adapter/window_manager.h
|
|
index f15982d..5a7701e 100644
|
|
--- a/net/third_party/quiche/src/http2/adapter/window_manager.h
|
|
+++ b/net/third_party/quiche/src/http2/adapter/window_manager.h
|
|
@@ -1,6 +1,8 @@
|
|
#ifndef QUICHE_HTTP2_ADAPTER_WINDOW_MANAGER_H_
|
|
#define QUICHE_HTTP2_ADAPTER_WINDOW_MANAGER_H_
|
|
|
|
+#include <stddef.h>
|
|
+
|
|
#include <functional>
|
|
|
|
#include "common/platform/api/quiche_export.h"
|
|
--
|
|
2.32.0
|
|
|