summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debsystem.h
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-02-26 14:29:06 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2020-02-26 14:30:03 +0100
commitda7de99f8473ae0ac90c90fad3eee80f5f72889a (patch)
tree795744c3038a9d6e9c7cae5ef69e4095c0d1fc94 /apt-pkg/deb/debsystem.h
parentd77c1c7db760ae21d703b8b0f129379e54918bf7 (diff)
pkgsystem: Drop more virtual workaround shenanigans
Diffstat (limited to 'apt-pkg/deb/debsystem.h')
-rw-r--r--apt-pkg/deb/debsystem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apt-pkg/deb/debsystem.h b/apt-pkg/deb/debsystem.h
index 3a308fb1c..a331af351 100644
--- a/apt-pkg/deb/debsystem.h
+++ b/apt-pkg/deb/debsystem.h
@@ -45,12 +45,12 @@ class debSystem : public pkgSystem
APT_HIDDEN static std::vector<std::string> GetDpkgBaseCommand();
APT_HIDDEN static void DpkgChrootDirectory();
APT_HIDDEN static pid_t ExecDpkg(std::vector<std::string> const &sArgs, int * const inputFd, int * const outputFd, bool const DiscardOutput);
- APT_HIDDEN static bool SupportsMultiArch();
- APT_HIDDEN static std::vector<std::string> SupportedArchitectures();
+ bool MultiArchSupported() const override;
+ std::vector<std::string> ArchitecturesSupported() const override;
- APT_HIDDEN bool LockInner();
- APT_HIDDEN bool UnLockInner(bool NoErrors=false);
- APT_HIDDEN bool IsLocked();
+ bool LockInner() override;
+ bool UnLockInner(bool NoErrors=false) override;
+ bool IsLocked() override;
};
extern debSystem debSys;