Commit 94fc4638 authored by ylavic's avatar ylavic

Add missing curly brackets in STDREGEX's CreatePattern().

parent 01950eb7
......@@ -1149,7 +1149,7 @@ private:
#elif RAPIDJSON_SCHEMA_USE_STDREGEX
template <typename ValueType>
RegexType* CreatePattern(const ValueType& value) {
if (value.IsString())
if (value.IsString()) {
RegexType *r = static_cast<RegexType*>(allocator_->Malloc(sizeof(RegexType)));
try {
return new (r) RegexType(value.GetString(), std::size_t(value.GetStringLength()), std::regex_constants::ECMAScript);
......@@ -1157,6 +1157,7 @@ private:
catch (const std::regex_error&) {
AllocatorType::Free(r);
}
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment