Skip to content
Snippets Groups Projects
Commit 4cfb6b0c authored by Antti Soininen's avatar Antti Soininen
Browse files

Code beautification.

Re #20969
parent 9b883da9
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@ namespace DateAndTimeHelpers {
*/
bool stringIsISO8601(const std::string &date) {
// On Ubuntu 14.04, std::regex seems to be broken, thus boost.
const boost::regex r(R"(^\d{4}-[01]\d-[0-3]\d([T\s][0-2]\d:[0-5]\d(:\d{2})?(.\d+)?(Z|[+-]\d{2}(:\d{2})?)?)?$)");
const boost::regex r(
R"(^\d{4}-[01]\d-[0-3]\d([T\s][0-2]\d:[0-5]\d(:\d{2})?(.\d+)?(Z|[+-]\d{2}(:\d{2})?)?)?$)");
return boost::regex_match(date, r);
}
} // namespace DateAndTimeHelpers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment