Commit 23cd4add by Tom Anderson Committed by Commit Bot

Add missing include to stddef.h on arm

Change-Id: I28771a550a3188993635f55803093fc49590ceb1 Reviewed-on: https://chromium-review.googlesource.com/764887Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 336129f6
......@@ -91,8 +91,8 @@
#define ANGLE_USE_SSE
#endif
// Mips devices need to include stddef for size_t.
#if defined(__mips__)
// Mips and arm devices need to include stddef for size_t.
#if defined(__mips__) || defined(__arm__) || defined(__aarch64__)
#include <stddef.h>
#endif
......
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