diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-05-13 19:04:16 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-05-13 19:04:16 -0700 |
commit | 10fbe88c939165d690c9a71fd0974bc80e7b0af6 (patch) | |
tree | 639585cdda10d4863e605a1ac38c82e97af84b17 /0001-Add-a-few-missing-cstdint-includes.patch | |
parent | Updated to 102.9.0 (diff) | |
download | firefox-esr-10fbe88c939165d690c9a71fd0974bc80e7b0af6.tar.xz |
Diffstat (limited to '0001-Add-a-few-missing-cstdint-includes.patch')
-rw-r--r-- | 0001-Add-a-few-missing-cstdint-includes.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/0001-Add-a-few-missing-cstdint-includes.patch b/0001-Add-a-few-missing-cstdint-includes.patch new file mode 100644 index 0000000..179c7fa --- /dev/null +++ b/0001-Add-a-few-missing-cstdint-includes.patch @@ -0,0 +1,51 @@ +--- a/gfx/2d/Rect.h ++++ b/gfx/2d/Rect.h +@@ -10,16 +10,17 @@ + #include "BaseRect.h" + #include "BaseMargin.h" + #include "NumericTools.h" + #include "Point.h" + #include "Tools.h" + #include "mozilla/Maybe.h" + + #include <cmath> ++#include <cstdint> + + namespace mozilla { + + template <typename> + struct IsPixel; + + namespace gfx { + + +--- a/toolkit/components/telemetry/pingsender/pingsender.cpp ++++ b/toolkit/components/telemetry/pingsender/pingsender.cpp +@@ -1,14 +1,15 @@ + /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ + /* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + + #include <cstdlib> ++#include <cstdint> + #include <cstring> + #include <ctime> + #include <fstream> + #include <iomanip> + #include <string> + #include <vector> + + #include <zlib.h> + + +--- a/dom/media/webrtc/sdp/RsdparsaSdpGlue.h +--- b/dom/media/webrtc/sdp/RsdparsaSdpGlue.h +@@ -6,6 +6,7 @@ + #ifndef _RUSTSDPGLUE_H_ + #define _RUSTSDPGLUE_H_ + ++#include <cstdint> + #include <string> + #include <vector> + #include <utility> |