fix C++03 compatibility

This commit is contained in:
Christian Semmler 2018-03-26 13:16:31 +02:00
parent c8530d022f
commit f8c8c32b42

View File

@ -2015,7 +2015,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
return collection[i];
}
};
SchemaDocument* collection[] { 0, 0, 0 };
SchemaDocument* collection[] = { 0, 0, 0 };
SchemaDocumentProvider provider(collection);
Document x, y, z;