blob: 516c81199bda6180ee11124cf2854485da57abe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
https://bugs.gentoo.org/924019
(same as https://bugs.gentoo.org/914583 given rapidjson is bundled)
https://github.com/Tencent/rapidjson/issues/718
https://github.com/Tencent/rapidjson/commit/3b2441b87f99ab65f37b141a7b548ebadb607b96
From: Janusz Chorko <janusz.chorko@apdu.pl>
Date: Fri, 26 Aug 2016 21:17:38 +0200
Subject: [PATCH] Removed non-compiling assignment operator. Fixed #718
--- a/src/third-party/discord-rpc/include/rapidjson/document.h
+++ b/src/third-party/discord-rpc/include/rapidjson/document.h
@@ -317,6 +317,4 @@
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; }
|