From: Tom B. <tom...@gm...> - 2013-08-08 14:14:31
|
Using the master branch I get this warning: const std::string& xml::tree_parser::get_error_message() const' is deprecated i am using the deprecated funciton this way: cout << parser.get_error_message() << endl; I tried this: cout << parser.messages() << endl; but get an ostream error. So what is the correct way? Thanks, -Tom |