| 93 | } |
| 94 | |
| 95 | void cmdline::style(int style) noexcept |
| 96 | { |
| 97 | if (style == 0) |
| 98 | style = default_style; |
| 99 | |
| 100 | check_style(style); |
| 101 | this->m_style = static_cast<style_t>(style); |
| 102 | } |
| 103 | |
| 104 | void cmdline::allow_unregistered() noexcept |
| 105 | { |
no outgoing calls