blob: d58572da766d40c606b195c018d8370c2d175ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From 3a3ebb5dc7a1dc6f8f893093d213a637acfc4024 Mon Sep 17 00:00:00 2001
From: Vicki Pfau <vi@endrift.com>
Date: Sat, 25 May 2024 01:33:26 -0700
Subject: [PATCH] Third-Party: Cherry-pick rapidjson buildfix
---
src/third-party/discord-rpc/include/rapidjson/document.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/third-party/discord-rpc/include/rapidjson/document.h b/src/third-party/discord-rpc/include/rapidjson/document.h
index e3e20dfbdc9..b0f1f70beba 100644
--- a/src/third-party/discord-rpc/include/rapidjson/document.h
+++ b/src/third-party/discord-rpc/include/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; }
|