Skip to content

Commit 9640209

Browse files
committed
remove superfluous typename
1 parent f8c8c32 commit 9640209

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
@@ -2011,7 +2011,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) {
20112011
SchemaDocumentProvider(SchemaDocument** collection) : collection(collection) { }
20122012
virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) {
20132013
int i = 0;
2014-
while (collection[i] && typename SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
2014+
while (collection[i] && SchemaDocument::URIType(uri, length) != collection[i]->GetURI()) ++i;
20152015
return collection[i];
20162016
}
20172017
};

0 commit comments

Comments
 (0)