| 20 | namespace re2 { |
| 21 | |
| 22 | RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) |
| 23 | : options_(options), |
| 24 | anchor_(anchor), |
| 25 | compiled_(false), |
| 26 | size_(0) { |
| 27 | options_.set_never_capture(true); // might unblock some optimisations |
| 28 | } |
| 29 | |
| 30 | RE2::Set::~Set() { |
| 31 | for (size_t i = 0; i < elem_.size(); i++) |
no test coverage detected