summaryrefslogtreecommitdiff
path: root/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2025-09-18 23:00:29 +0100
committerSam James <sam@gentoo.org>2025-09-18 23:55:41 +0100
commite1902d67012ece9b6c1e056c622c43435ef544ed (patch)
treea1f4fa8579e5091aaa0cc48e8fc1eb729e5196c8 /dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
parentbeea7c40d5a09fbb999834cc9b4de629593c6847 (diff)
downloadgentoo-e1902d67012ece9b6c1e056c622c43435ef544ed.tar.gz
gentoo-e1902d67012ece9b6c1e056c622c43435ef544ed.tar.bz2
gentoo-e1902d67012ece9b6c1e056c622c43435ef544ed.zip
dev-cpp/jsoncons: drop 1.4.0
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/43843 Closes: https://github.com/gentoo/gentoo/pull/43843 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch')
-rw-r--r--dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch b/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
deleted file mode 100644
index 24506cb58f2f..000000000000
--- a/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://github.com/danielaparker/jsoncons/pull/636
-
---- a/test/corelib/src/json_as_tests.cpp
-+++ b/test/corelib/src/json_as_tests.cpp
-@@ -108,7 +108,7 @@ TEST_CASE("json::as<__int128>()")
- {
- std::string s1 = "-18446744073709551617";
-
-- __int128 n;
-+ __int128 n{};
- auto result = jsoncons::utility::dec_to_integer(s1.data(),s1.size(), n);
- REQUIRE(result.ec == std::errc());
-
-@@ -129,7 +129,7 @@ TEST_CASE("json::as<unsigned __int128>()")
- {
- std::string s1 = "18446744073709551616";
-
-- unsigned __int128 n;
-+ unsigned __int128 n{};
-
- auto result = jsoncons::utility::dec_to_integer(s1.data(),s1.size(), n);
- REQUIRE(result.ec == std::errc());