From 04c9d661fa97fa9fc205cd40f916ee52afc412d1 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Mon, 2 Oct 2023 18:38:02 -0400 Subject: [PATCH] Issue #1442 - Part 25b - Second try that hopefully doesn't break Windows. --- dom/fetch/Fetch.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dom/fetch/Fetch.h b/dom/fetch/Fetch.h index 0db4479feb..8508929e27 100644 --- a/dom/fetch/Fetch.h +++ b/dom/fetch/Fetch.h @@ -18,7 +18,9 @@ #include "mozilla/ErrorResult.h" #include "mozilla/dom/Promise.h" #include "mozilla/dom/FetchStreamReader.h" -#include "mozilla/dom/FetchIPCTypes.h" +// Fix X11 header brain damage that conflicts with HeadersGuardEnum::None +#undef None +#include "mozilla/dom/RequestBinding.h" class nsIGlobalObject; class nsIEventTarget;