Commit 9640209f authored by Christian Semmler's avatar Christian Semmler

remove superfluous typename

parent f8c8c32b
......@@ -2011,7 +2011,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
SchemaDocumentProvider(SchemaDocument** collection) : collection(collection) { }
virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) {
int i = 0;
while (collection[i] && typename SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
while (collection[i] && SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
return collection[i];
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment