metrowerks fix for decrement()

[SVN r10997]
This commit is contained in:
Jeremy Siek
2001-09-03 15:38:05 +00:00
parent 81e3df2b36
commit 4e18b11263

View File

@ -686,7 +686,11 @@ struct iterator_adaptor :
self operator++(int) { self tmp(*this); ++*this; return tmp; }
self& operator--() {
#ifdef __MWERKS__
policies().decrement<Base>(iter());
#else
policies().decrement(iter());
#endif
return *this;
}