projects
/
thunderbird.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
082c8f0
)
gfx: Fix inclusion of C++ header
author
Carsten Schoenert
<c.schoenert@t-online.de>
Wed, 26 Jul 2023 17:43:43 +0000
(19:43 +0200)
committer
Christoph Goehre
<chris@sigxcpu.org>
Fri, 1 Sep 2023 16:52:34 +0000
(17:52 +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
patch
|
blob
|
history
diff --git
a/gfx/2d/Rect.h
b/gfx/2d/Rect.h
index 4875ad6714583c0ae45f24f076c735085cd2f7fd..46b5bf43ab50560278344cc290cfc816a4f593a8 100644
(file)
--- a/
gfx/2d/Rect.h
+++ b/
gfx/2d/Rect.h
@@
-14,6
+14,7
@@
#include "Tools.h"
#include "mozilla/Maybe.h"
+#include <cinttypes>
#include <cmath>
namespace mozilla {