gfx: Fix inclusion of C++ header
authorCarsten Schoenert <c.schoenert@t-online.de>
Wed, 26 Jul 2023 17:43:43 +0000 (19:43 +0200)
committerCarsten Schoenert <c.schoenert@t-online.de>
Fri, 4 Aug 2023 17:48:57 +0000 (18:48 +0100)
<cinttypes> 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

gfx/2d/Rect.h

index 4875ad6714583c0ae45f24f076c735085cd2f7fd..46b5bf43ab50560278344cc290cfc816a4f593a8 100644 (file)
@@ -14,6 +14,7 @@
 #include "Tools.h"
 #include "mozilla/Maybe.h"
 
+#include <cinttypes> 
 #include <cmath>
 
 namespace mozilla {