| 33 | }; |
| 34 | |
| 35 | size_t restriction::restriction_count(const vector<restriction>& restrictions) { |
| 36 | return std::for_each(restrictions.begin(), restrictions.end(), adder()).sum; |
| 37 | } |
| 38 | |
| 39 | size_t restriction::restriction_count() const { |
| 40 | if (argument.is_type<vector<restriction>>()) { |
no test coverage detected