summaryrefslogtreecommitdiff
path: root/src/generic/problemresolver/incremental_expression.h
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2009-05-22 07:55:31 -0700
committerDaniel Burrows <dburrows@debian.org>2009-05-22 07:55:31 -0700
commit69b1406717177c0eefdaa4e7a9d00beb251ddeb0 (patch)
tree24dd68c3d6ef50c15eb37d851d0aab44aa96cedd /src/generic/problemresolver/incremental_expression.h
parent3232cd164d24850123a0c231455c6efa691edba3 (diff)
downloadaptitude-69b1406717177c0eefdaa4e7a9d00beb251ddeb0.tar.gz
Fix the iteration in the container's dump routine to use typename where it's necessary.
Diffstat (limited to 'src/generic/problemresolver/incremental_expression.h')
-rw-r--r--src/generic/problemresolver/incremental_expression.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generic/problemresolver/incremental_expression.h b/src/generic/problemresolver/incremental_expression.h
index 2435f55d..b44e6faa 100644
--- a/src/generic/problemresolver/incremental_expression.h
+++ b/src/generic/problemresolver/incremental_expression.h
@@ -261,7 +261,7 @@ public:
virtual void dump(std::ostream &out)
{
out << get_name() << "(";
- for(std::vector<cwidget::util::ref_ptr<expression<bool> > >::const_iterator
+ for(typename std::vector<cwidget::util::ref_ptr<expression<T> > >::const_iterator
it = get_children().begin(); it != get_children().end(); ++it)
{
if(it != get_children().begin())