summaryrefslogtreecommitdiff
path: root/src/generic/problemresolver/incremental_expression.h
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2009-06-02 08:48:47 -0700
committerDaniel Burrows <dburrows@debian.org>2009-06-02 08:48:47 -0700
commit8a24c21b599d8622704ace69bdd21c0594ad90cb (patch)
tree45a53659601dcf99ec57358564f1da0f9ae21335 /src/generic/problemresolver/incremental_expression.h
parentbafe00b8e5049b950190c519b8037bd294316775 (diff)
downloadaptitude-8a24c21b599d8622704ace69bdd21c0594ad90cb.tar.gz
Fix enough compile errors that the problem resolver subdirectory compiles.
The rest of the code still needs to be overhauled to take the changes into account, and it looks like there are bugs in code that's only instantiated from the client (e.g., reject_version()).
Diffstat (limited to 'src/generic/problemresolver/incremental_expression.h')
-rw-r--r--src/generic/problemresolver/incremental_expression.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/generic/problemresolver/incremental_expression.h b/src/generic/problemresolver/incremental_expression.h
index 20de48fe..8d7bd1bb 100644
--- a/src/generic/problemresolver/incremental_expression.h
+++ b/src/generic/problemresolver/incremental_expression.h
@@ -406,7 +406,7 @@ public:
virtual std::string get_name() = 0;
- virtual void dump(std::ostream &out)
+ void dump(std::ostream &out)
{
out << get_name() << "(";
for(typename std::vector<cwidget::util::ref_ptr<expression<T> > >::const_iterator
@@ -576,7 +576,6 @@ public:
bool get_value();
std::string get_name();
- void dump(std::ostream &out);
};
class or_e : public counting_bool_e
@@ -608,7 +607,6 @@ public:
bool get_value();
std::string get_name();
- void dump(std::ostream &out);
};
class not_e : public expression_box<bool>