Skip to content

Commit f8c8c32

Browse files
committed
fix C++03 compatibility
1 parent c8530d0 commit f8c8c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unittest/schematest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2015,7 +2015,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
20152015
return collection[i];
20162016
}
20172017
};
2018-
SchemaDocument* collection[] { 0, 0, 0 };
2018+
SchemaDocument* collection[] = { 0, 0, 0 };
20192019
SchemaDocumentProvider provider(collection);
20202020

20212021
Document x, y, z;

0 commit comments

Comments
 (0)