mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-11-12 03:07:55 +01:00
add body to private copy constructor & copy assignment
This commit is contained in:
@@ -2038,6 +2038,11 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
|
|||||||
class SchemaDocumentProvider : public IRemoteSchemaDocumentProvider {
|
class SchemaDocumentProvider : public IRemoteSchemaDocumentProvider {
|
||||||
SchemaDocument** collection;
|
SchemaDocument** collection;
|
||||||
|
|
||||||
|
SchemaDocumentProvider(const SchemaDocumentProvider&) {
|
||||||
|
}
|
||||||
|
SchemaDocumentProvider& operator=(const SchemaDocumentProvider&) {
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SchemaDocumentProvider(SchemaDocument** collection) : collection(collection) { }
|
SchemaDocumentProvider(SchemaDocument** collection) : collection(collection) { }
|
||||||
virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) {
|
virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) {
|
||||||
|
|||||||
Reference in New Issue
Block a user