summaryrefslogtreecommitdiff
path: root/dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2025-09-17 00:39:13 +0100
committerSam James <sam@gentoo.org>2025-09-17 22:30:28 +0100
commitc984f6ceba3fbc884bb3a3323a7aa393701f6d5b (patch)
treedb8c75822e1e5573e43ca0fcb7cb3cc0ac0bd2b3 /dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch
parent6427fe8873a91e3e1fb2a2ca0a58255cffd7bdae (diff)
downloadgentoo-c984f6ceba3fbc884bb3a3323a7aa393701f6d5b.tar.gz
gentoo-c984f6ceba3fbc884bb3a3323a7aa393701f6d5b.tar.bz2
gentoo-c984f6ceba3fbc884bb3a3323a7aa393701f6d5b.zip
dev-cpp/jsoncons: add 1.4.0, drop 1.3.2
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/43821 Closes: https://github.com/gentoo/gentoo/pull/43821 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch')
-rw-r--r--dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch b/dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch
deleted file mode 100644
index 936d9eec8e3d..000000000000
--- a/dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fix error: ā€˜c’ may be used uninitialized [-Werror=maybe-uninitialized]
-https://github.com/danielaparker/jsoncons/pull/628
-
---- a/include/jsoncons/source.hpp
-+++ b/include/jsoncons/source.hpp
-@@ -767,7 +767,7 @@ namespace jsoncons {
- std::size_t actual = 0;
- while (actual < n)
- {
-- typename Source::value_type c;
-+ typename Source::value_type c{};
- if (source.read(&c,1) != 1)
- {
- break;