Added a typename decorator to a template type to keep the C++ compiler happy

This commit is contained in:
Neil Brown 2008-01-29 21:39:04 +00:00
parent 46f054ff98
commit 5a7e6976d1

View File

@ -494,7 +494,7 @@ public:
return *this;
}
typedef std::list<T>::iterator iterator;
typedef typename std::list<T>::iterator iterator;
inline iterator beginSeqEach()
{