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 f8c8c32 commit 9640209Copy full SHA for 9640209
test/unittest/schematest.cpp
@@ -2011,7 +2011,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
2011
SchemaDocumentProvider(SchemaDocument** collection) : collection(collection) { }
2012
virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) {
2013
int i = 0;
2014
- while (collection[i] && typename SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
+ while (collection[i] && SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
2015
return collection[i];
2016
}
2017
};
0 commit comments