Tony Camuso wrote
Why is the compiler okay with ... std::vector <int> intvec; ... but throws an error for ... std::vector
pintvec;
The answer can be found here: </a> http:// http://stackoverflow.com/questions/19076299/how-do-i-serialize-a-class-conta... I concede that this should be added to the documentation. Feel free to open a trac item to remind me of this. So the solution is to wrap your int inside a class. This will give it a unique type and distinguish from all the other int instances you don't really want to track. Also you can use BOOST_SERIALIZATION to create a wrapper. -- View this message in context: http://boost.2283326.n4.nabble.com/Flood-of-messages-when-building-with-boos... Sent from the Boost - Users mailing list archive at Nabble.com.