summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2025-12-22 22:33:12 +0100
committerJulian Andres Klode <jak@debian.org>2026-01-05 21:20:24 +0000
commite92750f895af0e957d297c17149878235467cca1 (patch)
treebe552454e51a9460471e826b0e22e01bea5050f0 /cmdline
parent59b8099d79b5e103585b66279f191f4cb421a770 (diff)
solver3: Extract DependencySolver
Extract almost all dependency logic into a subclass
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt.cc b/cmdline/apt.cc
index 39ec68e71..4a0708db8 100644
--- a/cmdline/apt.cc
+++ b/cmdline/apt.cc
@@ -66,7 +66,7 @@ static bool DoWhy(CommandLine &CmdL) /*{{{*/
if (unlikely(not CacheFile.BuildDepCache()))
return false;
for (auto pkg : pkgset)
- std::cout << APT::Solver::Solver::InternalCliWhy(CacheFile, pkg, decision) << std::flush;
+ std::cout << APT::Solver::DependencySolver::InternalCliWhy(CacheFile, pkg, decision) << std::flush;
return not _error->PendingError();
}
static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/