git repos / saland

commit db47ad19

Poul Sander · 2025-05-29 10:09
db47ad19642714a15ca77fbee197e8d51a84b3bf patch · browse files
parent dca486433cb4cf0bd7957f3c3bfe5ee8da6fc3cd

Make compiling work on Ubuntu 25.04

Changed files

M src/Libs/include/rapidjson/document.h before
diff --git a/src/Libs/include/rapidjson/document.h b/src/Libs/include/rapidjson/document.h index e3e20df..b0f1f70 100644 --- a/src/Libs/include/rapidjson/document.h +++ b/src/Libs/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; }