diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-06-14 15:50:39 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2019-06-14 15:52:41 +0200 |
commit | d88af368d2a45bf9490fc629edbaa111da8a26cf (patch) | |
tree | 4cff941e4e701ffbfd0af86fd730f3961f03dbb0 /apt-pkg/policy.h | |
parent | 6b6e942da072ef5b0f5d49b16c8bf2374f8a5071 (diff) |
policy: Get rid of Pins array
Gbp-Dch: ignore
Diffstat (limited to 'apt-pkg/policy.h')
-rw-r--r-- | apt-pkg/policy.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apt-pkg/policy.h b/apt-pkg/policy.h index d3d68f921..277aff3dd 100644 --- a/apt-pkg/policy.h +++ b/apt-pkg/policy.h @@ -57,8 +57,7 @@ class pkgPolicy : public pkgDepCache::Policy std::string Pkg; explicit PkgPin(std::string const &Pkg) : Pin(), Pkg(Pkg) {}; }; - - Pin *Pins; + Pin *VerPins; signed short *PFPriority; std::vector<Pin> Defaults; |