Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSteve Hanson <smh@uk.ibm.com>2021-02-26 01:51:35 +0300
committerSteve Hanson <smh@uk.ibm.com>2021-02-26 01:51:35 +0300
commitad73c032e714af439d0aadb7946bf63706824736 (patch)
treeee5278f694b1e36da083046a5fbc528da19a2174 /test
parent892f6e3fd361d8f9da8753b5e1038e7f4cb02f73 (diff)
fix compile errors
Diffstat (limited to 'test')
-rw-r--r--test/unittest/schematest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittest/schematest.cpp b/test/unittest/schematest.cpp
index b3b92919..d84fcd49 100644
--- a/test/unittest/schematest.cpp
+++ b/test/unittest/schematest.cpp
@@ -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;
}