Arguments contained '--version' and parsing was aborted early
| 54 | |
| 55 | // Arguments contained '--version' and parsing was aborted early |
| 56 | struct DocoptExitVersion : std::runtime_error { DocoptExitVersion() : std::runtime_error("Docopt --version argument encountered") {} }; |
| 57 | |
| 58 | /// A map of options set by the user |
| 59 | using Options = std::map<std::string, value>; |