]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cacheset.h
handle :arch modifier in PackageSet::FromString correctly
[apt.git] / apt-pkg / cacheset.h
index b65e053e69e5e881b5158ac11c5397953f1b551d..4f7be4caa4875ff2491f6685ca203f77537af03b 100644 (file)
@@ -83,8 +83,8 @@ public:                                                                       /*{{{*/
            \param Cache the packages are in
            \param string String the package name(s) should be extracted from
            \param out stream to print various notices to */
-       static APT::PackageSet FromString(pkgCacheFile &Cache, const char * const string, std::ostream &out);
-       static APT::PackageSet FromString(pkgCacheFile &Cache, const char * const string) {
+       static APT::PackageSet FromString(pkgCacheFile &Cache, std::string const &string, std::ostream &out);
+       static APT::PackageSet FromString(pkgCacheFile &Cache, std::string const &string) {
                std::ostream out (std::ofstream("/dev/null").rdbuf());
                return APT::PackageSet::FromString(Cache, string, out);
        }