| 2144 | } |
| 2145 | |
| 2146 | inline |
| 2147 | void |
| 2148 | OptionParser::parse_default(const std::shared_ptr<OptionDetails>& details) |
| 2149 | { |
| 2150 | // TODO: remove the duplicate code here |
| 2151 | auto& store = m_parsed[details->hash()]; |
| 2152 | store.parse_default(details); |
| 2153 | m_defaults.emplace_back(details->long_name(), details->value().get_default_value()); |
| 2154 | } |
| 2155 | |
| 2156 | inline |
| 2157 | void |
nothing calls this directly
no test coverage detected