git repos / sago_multi_scrambler_puzzle2

commit a0348d31

Poul Sander · 2025-05-15 17:03
a0348d31ff6cf2a082a32962b2cec16ade042e35 patch · browse files
parent d1f6bd4279a222154a9a03e81717f28133cee869

Fix compilation error

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; }