Reputation:
I am trying to do a simple program:
#include <boost/property_tree/ini_parser.hpp>
class Config {
boost::property_tree::ptree pt;
....
But I am getting the error in the title above.
I am using the boost version 1.38. Is it not in this version?
Upvotes: 0
Views: 741
Reputation: 396
As you can see on this page, property tree was added to boost in 1.41.0
You have to update your boost
Upvotes: 1