26 lines
719 B
Diff
26 lines
719 B
Diff
From bc383a5dd7fa8f2b535f28815fd6932fbc0d2a45 Mon Sep 17 00:00:00 2001
|
|
From: Stephan Hartmann <stha09@googlemail.com>
|
|
Date: Wed, 28 Oct 2020 16:00:35 +0000
|
|
Subject: [PATCH] IWYU: include stddef.h for size_t
|
|
|
|
---
|
|
third_party/dawn/src/common/ityp_array.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/third_party/dawn/src/common/ityp_array.h b/third_party/dawn/src/common/ityp_array.h
|
|
index 48e080f..c784198 100644
|
|
--- a/third_party/dawn/src/common/ityp_array.h
|
|
+++ b/third_party/dawn/src/common/ityp_array.h
|
|
@@ -21,6 +21,8 @@
|
|
#include <array>
|
|
#include <type_traits>
|
|
|
|
+#include <stddef.h>
|
|
+
|
|
namespace ityp {
|
|
|
|
// ityp::array is a helper class that wraps std::array with the restriction that
|
|
--
|
|
2.26.2
|
|
|