| 393 | |
| 394 | template <class T> |
| 395 | auto ArgumentParser::AddVariable( |
| 396 | const std::vector<std::string>& names, T defaultval, bool hasdefault) |
| 397 | -> Proxy<T> { |
| 398 | return imp->AddVariable(names, defaultval, hasdefault); |
| 399 | } |
| 400 | |
| 401 | template auto ArgumentParser::AddVariable( |
| 402 | const std::vector<std::string>& names, double defaultval, bool hasdefault) |
nothing calls this directly
no outgoing calls
no test coverage detected