namespace pt = boost::property_tree ;
pt::ptree tree ;
// The following function translates to
// tree.put("Temp.Flag", true) ;
boost::phoenix::bind (&pt::ptree::put<bool>, tree, string("Temp.Flag"), true) ;
what I wanted to know is whether the warning is harmless or not. Can i suppress the warning in compiler flags using /wd4180 without any issues ?
Gcc compiles fine without any warnings.
Surya