$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: n.torrey.pines (n.torrey.pines_at_[hidden])
Date: 2007-02-23 14:55:53
Hi
Line 36 in collections_save_imp.hpp says:
unsigned int count = s.size();
I'm getting many pages of warnings in VC++2005 stemming from this line.
Would it make sense to change that to
std::size_t count = s.size() ?
If so, should I just edit the line? recompile boost? I'd like to take
care of that warning.
Thanks