$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Alexey Bakhvalov (bakhvalov_at_[hidden])
Date: 2005-06-13 13:41:13
I get compiler error if I try to compare ptr_vector::iterator with
ptr_vector::const_iterator. (I use the latest library downloaded from Boost
CVS repository)
For example, the following code doesn't compile under VC 7.1:
typedef boost::ptr_vector<char> TContainer;
TContainer some_vector;
for (TContainer::const_iterator it = some_vector.begin(); it !=
some_vector.end(); ++it) ;
But it definitely should...