summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-09-28 00:45:46 +0000
committerMorgan Deters <mdeters@gmail.com>2011-09-28 00:45:46 +0000
commit64c703d55dc132d3acb4f7da5ab9403886f121c0 (patch)
treec229034878efaeb71c698447a29be26a2d0951db /src
parentd529e4c065d880f5fdf6e10cb0996a45e739bb51 (diff)
removed "typename" keyword (fix to bug 280)
Diffstat (limited to 'src')
-rw-r--r--src/util/datatype.h4
1 files 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<Constructor>::iterator iterator;
+ typedef std::vector<Constructor>::iterator iterator;
/** The (const) type for iterators over constructors. */
- typedef typename std::vector<Constructor>::const_iterator const_iterator;
+ typedef std::vector<Constructor>::const_iterator const_iterator;
private:
std::string d_name;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback