id summary reporter owner description type status milestone component version severity resolution keywords cc 4276 "warning ""type qualifiers ignored on function return type"" in ptr_map" boris.bigott@… Thorsten Ottosen "The following program compiled with gcc using options -W and -Wall spits out a warning about ignored type qualifiers. test.cpp: #include int main() { } g++ -W -Wall test.cpp ../include/boost/ptr_container/detail/map_iterator.hpp:52: warning: type qualifiers ignored on function return type It seems like there is a superfluous const in the -> operator. const ref_pair* const operator->() const should be const ref_pair* operator->() const" Bugs new To Be Determined ptr_container Boost 1.47.0 Cosmetic ptr_map mika.fischer@…