----------------------------------------------------------------------------
| 234 | |
| 235 | //---------------------------------------------------------------------------- |
| 236 | bool |
| 237 | Regex::compile(std::string_view pattern, uint32_t flags) |
| 238 | { |
| 239 | std::string error; |
| 240 | int erroroffset; |
| 241 | |
| 242 | return this->compile(pattern, error, erroroffset, flags); |
| 243 | } |
| 244 | |
| 245 | //---------------------------------------------------------------------------- |
| 246 | bool |