Hello,

                I’m doing:

 

string myString = (boost::format(“%i”) % 1.1).str();

 

I would expect that to either throw an error (preferred) or cast to an int and then format. I’m seeing a similar issue with %x and %o etc. Any thoughts?

 

Rob Conde