pboettch / json-schema-validator

JSON schema validator for JSON for Modern C++
Other
464 stars 133 forks source link

Enable boost regex usage for string-format-check.cpp #286

Closed DJDavies2 closed 9 months ago

DJDavies2 commented 9 months ago

There is code in src/json-validator.cpp that enables the Boost regex library to be used instead of the std::regex library via a cpp option. However there is std::regex code in src/string-format-check.cpp and there is no option to use Boost regex. This PR adds the option of using Boost regex for that file as well.