We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4f59d commit 5e50f27Copy full SHA for 5e50f27
test/unittest/schematest.cpp
@@ -2039,7 +2039,8 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
2039
SchemaDocument** collection;
2040
2041
// Dummy private copy constructor & assignment operator.
2042
- SchemaDocumentProvider(const SchemaDocumentProvider&) {
+ // Function bodies added so that they compile in MSVC 2019.
2043
+ SchemaDocumentProvider(const SchemaDocumentProvider&) : collection(NULL) {
2044
}
2045
SchemaDocumentProvider& operator=(const SchemaDocumentProvider&) {
2046
return *this;
0 commit comments