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
diff options
context:
space:
mode:
authorSteve Hanson <smh@uk.ibm.com>2021-06-09 18:38:40 +0300
committerSteve Hanson <smh@uk.ibm.com>2021-06-09 18:38:40 +0300
commitf6ebcb2008f0e3f06c8d4b2a81d6295989ba4dd5 (patch)
tree422c0d3992a26ac8cf16aa97cfcc911d054f7ba1
parent3df804c1282c17afe899d97280be0812daed707c (diff)
fix Uri.Match optional arg
-rw-r--r--include/rapidjson/uri.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/uri.h b/include/rapidjson/uri.h
index f70c388e..97c84f1d 100644
--- a/include/rapidjson/uri.h
+++ b/include/rapidjson/uri.h
@@ -134,7 +134,7 @@ public:
return !Match(rhs, true);
}
- bool Match(const GenericUri& uri, bool full) const {
+ bool Match(const GenericUri& uri, bool full = true) const {
Ch* s1;
Ch* s2;
if (full) {