From 64c703d55dc132d3acb4f7da5ab9403886f121c0 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Wed, 28 Sep 2011 00:45:46 +0000 Subject: removed "typename" keyword (fix to bug 280) --- src/util/datatype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/datatype.h b/src/util/datatype.h index 148d85870..b536cdf2b 100644 --- a/src/util/datatype.h +++ b/src/util/datatype.h @@ -326,9 +326,9 @@ public: };/* class Datatype::Constructor */ /** The type for iterators over constructors. */ - typedef typename std::vector::iterator iterator; + typedef std::vector::iterator iterator; /** The (const) type for iterators over constructors. */ - typedef typename std::vector::const_iterator const_iterator; + typedef std::vector::const_iterator const_iterator; private: std::string d_name; -- cgit v1.2.3