port to Codewarrior 6.0

[SVN r8107]
This commit is contained in:
Jeremy Siek
2000-11-03 04:25:13 +00:00
parent 3692175786
commit efcbd24229

View File

@ -227,7 +227,13 @@ public:
{ return *(*this + n); }
Self& operator++() {
#ifdef __MWERKS__
// Odd bug, MWERKS couldn't deduce the type for the member template
// Workaround by explicitly specifying the type.
policies().increment<Iterator>(iter());
#else
policies().increment(iter());
#endif
return *this;
}