blob: 3e655b485e6e156db7d3e419116331c305d0906d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/src/json-validator.cpp b/src/json-validator.cpp
index f16f3ef..1f7b615 100644
--- a/src/json-validator.cpp
+++ b/src/json-validator.cpp
@@ -663,7 +663,7 @@ public:
#ifndef NO_STD_REGEX
attr = sch.find("pattern");
if (attr != sch.end()) {
- patternString_ = attr.value();
+ patternString_ = attr.value().get<std::string>();
pattern_ = {true, REGEX_NAMESPACE::regex(attr.value().get<std::string>(),
REGEX_NAMESPACE::regex::ECMAScript)};
sch.erase(attr);
|