From: Carsten Schoenert Date: Wed, 26 Jul 2023 17:43:43 +0000 (+0200) Subject: gfx: Fix inclusion of C++ header X-Git-Tag: archive/raspbian/1%102.15.0-1_deb10u1+rpi1^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8ff680a5defc1e8e4ba95c8ed3a1f39bb13b9cb3;p=thunderbird.git gfx: Fix inclusion of C++ header isn't included so the compilation with gcc13 will be broken. Adding the needed header for C integer types in GFX submodul. Gbp-Pq: Topic fixes Gbp-Pq: Name gfx-Fix-inclusion-of-C-header.patch --- diff --git a/gfx/2d/Rect.h b/gfx/2d/Rect.h index 4875ad6714..46b5bf43ab 100644 --- a/gfx/2d/Rect.h +++ b/gfx/2d/Rect.h @@ -14,6 +14,7 @@ #include "Tools.h" #include "mozilla/Maybe.h" +#include #include namespace mozilla {