ProgramOptions.hxx
ProgramOptions.hxx copied to clipboard
Single-header program options parsing library for C++11
The following warning occurs when using this library in an ARM environment(Raspberry Pi GCC 10.2). ``` ../subprojects/ProgramOptions.hxx/include/ProgramOptions.hxx: In function ‘bool po::case_insensitive_eq(char, char)’: ../subprojects/ProgramOptions.hxx/include/ProgramOptions.hxx:257:8: warning: comparison is always true due to...
Hi, I created an AUR package for ProgramOptions, find it here: https://aur.archlinux.org/packages/program-options/ If you want, you can add this piece of information to the README.
Hi Here is some unsolicited feeback. In general, when one is developing, it is always convenient to be able to print out the state of an object. I think you...
I wonder if it would make sense to be able to declare an option as 'mandatory' via a .mandatory() function. I can of course check availability of an option explicitly,...
Hi josua I've just started to test your API. Are you receptive to new ideas? If not it's ok, just ignore me. But if you are, here are some ideas:...
hi I defined #define PROGRAMOPTIONS_SILENT and I expected to get exceptions instead of the error messages, but there were no exceptions even when I had non-option arguments. Also, I'm not...