summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-pkg/solver3.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/solver3.h b/apt-pkg/solver3.h
index 2331af869..435c1c279 100644
--- a/apt-pkg/solver3.h
+++ b/apt-pkg/solver3.h
@@ -201,7 +201,7 @@ class Solver
// and std::pop_heap() rather than a priority_queue because we need to
// be able to iterate over the queued work and see if a choice would
// invalidate any work.
- heap<Work> work{};
+ heap<Work> work;
// \brief Backlog of solved work.
//
@@ -209,7 +209,7 @@ class Solver
// here to revisit it later. This is similar to what MiniSAT calls the
// trail; one distinction is that we have both literals and our work
// queue to be concerned about
- std::vector<Solved> solved{};
+ std::vector<Solved> solved;
// \brief Propagation queue
std::queue<Var> propQ;