Given this program fragment (based on the Getting Started example) using Boost::program_options compiled with MinGW:
options_description desc("Program options");
...
variables_map vm;
store(parse_command_line(argc, argv, desc), vm);
gave the following error (reformatted for readability):
error: no matching function for call to
`store(boost::program_options::basic_parsed_options<const char>,
boost::program_options::variables_map&)'
candidates are:
store(const boost::program_options::basic_parsed_options<char>&,
boost::program_options::variables_map&, bool)
store(const boost::program_options::basic_parsed_options