summaryrefslogtreecommitdiff
path: root/net-libs/davix/files/davix-0.8.5-gcc14.patch
blob: 2e2c8bd663ac4ef4558a90aa44c6c1ddca6bfb8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Fix bundled rapidjson build with GCC 14.

--- a/src/libs/rapidjson/document.h
+++ b/src/libs/rapidjson/document.h
@@ -316,8 +316,6 @@ struct GenericStringRef {
 
     GenericStringRef(const GenericStringRef& rhs) : s(rhs.s), length(rhs.length) {}
 
-    GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
-
     //! implicit conversion to plain CharType pointer
     operator const Ch *() const { return s; }