add body to private copy constructor & copy assignment
This commit is contained in:
parent
3006926231
commit
d742a030aa
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user