summaryrefslogtreecommitdiff
path: root/dev-cpp/jsoncons/files/jsoncons-1.3.2-uninitialized.patch
diff options
context:
space:
mode:
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;