summaryrefslogtreecommitdiff
path: root/apt-pkg/depcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apt-pkg/depcache.h')
-rw-r--r--apt-pkg/depcache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/depcache.h b/apt-pkg/depcache.h
index 8d50d6fc6..665f8e86b 100644
--- a/apt-pkg/depcache.h
+++ b/apt-pkg/depcache.h
@@ -332,9 +332,9 @@ class APT_PUBLIC pkgDepCache : protected pkgCache::Namespace
inline Header &Head() {return *Cache->HeaderP;};
inline GrpIterator GrpBegin() {return Cache->GrpBegin();};
inline PkgIterator PkgBegin() {return Cache->PkgBegin();};
- inline GrpIterator FindGrp(APT::StringView Name) {return Cache->FindGrp(Name);};
- inline PkgIterator FindPkg(APT::StringView Name) {return Cache->FindPkg(Name);};
- inline PkgIterator FindPkg(APT::StringView Name, APT::StringView Arch) {return Cache->FindPkg(Name, Arch);};
+ inline GrpIterator FindGrp(std::string_view Name) {return Cache->FindGrp(Name);};
+ inline PkgIterator FindPkg(std::string_view Name) {return Cache->FindPkg(Name);};
+ inline PkgIterator FindPkg(std::string_view Name, std::string_view Arch) {return Cache->FindPkg(Name, Arch);};
inline pkgCache &GetCache() {return *Cache;};
inline pkgVersioningSystem &VS() {return *Cache->VS;};