fix compile errors

This commit is contained in:
Steve Hanson
2021-02-25 22:51:35 +00:00
parent 892f6e3fd3
commit ad73c032e7
3 changed files with 4 additions and 2 deletions

View File

@@ -2136,7 +2136,7 @@ public:
virtual const SchemaDocumentType* GetRemoteDocument(const char* uri, SizeType length) {
for (size_t i = 0; i < kCount; i++)
if (typename SchemaDocumentType::SType(uri, length) == sd_[i]->GetURI())
if (typename SchemaDocumentType::SValue(uri, length) == sd_[i]->GetURI())
return sd_[i];
return 0;
}