
24 Dec
2005
24 Dec
'05
6:59 p.m.
running a debug build of one of your examples in vc8.0 (visual studio beta 2) asserts "list iterators incompatible" from a calling location in hash_map.hpp // Insert a new entry into the map. std::pair<iterator, bool> insert(const value_type& v) { size_t bucket = boost::hash_value(v.first) % num_buckets; iterator it = buckets_[bucket].first; if (it == values_.end() ) <--- asserts Probably just "Safe" C++ library getting in the way. Anyone know a way to disable this checking? Simon