Set the option as required
| 116 | |
| 117 | /// Set the option as required |
| 118 | CRTP *required(bool value = true) { |
| 119 | required_ = value; |
| 120 | return static_cast<CRTP *>(this); |
| 121 | } |
| 122 | |
| 123 | /// Support Plumbum term |
| 124 | CRTP *mandatory(bool value = true) { return required(value); } |
nothing calls this directly
no outgoing calls
no test coverage detected