From 0a45d84fd430388b77a6f41fa9af7169eacc422f Mon Sep 17 00:00:00 2001 From: James Price Date: Thu, 29 Apr 2021 16:48:44 +0000 Subject: [PATCH] Add missing include to fix g3 build This is needed for std::nullptr_t. Change-Id: I45780e783a81b29fb173cd3fa59542b5dbda0823 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/49541 Commit-Queue: James Price Commit-Queue: Corentin Wallez Auto-Submit: James Price Reviewed-by: Corentin Wallez Kokoro: Kokoro --- src/typepair.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/typepair.h b/src/typepair.h index 9bddaf716f..1d34f372c9 100644 --- a/src/typepair.h +++ b/src/typepair.h @@ -19,6 +19,8 @@ #ifndef SRC_TYPEPAIR_H_ #define SRC_TYPEPAIR_H_ +#include + // X11 likes to #define Bool leading to confusing error messages. // If its defined, undefine it. #ifdef Bool