| 24 | #include <sstream> |
| 25 | |
| 26 | bool CmdlineArg::ParseValue(int i, std::string& value) const { |
| 27 | if (i >= NumValues()) { |
| 28 | return false; |
| 29 | } |
| 30 | value = Value(i); |
| 31 | return true; |
| 32 | } |
| 33 | |
| 34 | bool CmdlineArg::ParseValue(int i, long& value) const { |
| 35 | if (i >= NumValues()) { |
no test coverage detected