| 89 | |
| 90 | |
| 91 | void Options::addConditional(const Option& option) |
| 92 | { |
| 93 | assert(Option::nameValid(option.getName(), true)); |
| 94 | if (m_options.find(option.getName()) == m_options.end()) |
| 95 | m_options.insert({ option.getName(), option }); |
| 96 | } |
| 97 | |
| 98 | |
| 99 | void Options::addConditional(const Options& other) |