]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/metaindex.cc
update symbols file
[apt.git] / apt-pkg / metaindex.cc
index fe948243ec57cef3150b163d975d4d4defdf1382..6e5792b78f3d1b791ed4c0e8863444e4848f83cf 100644 (file)
@@ -111,3 +111,11 @@ bool metaIndex::IsArchitectureSupported(std::string const &arch) const     /*{{{*/
    return true;
 }
                                                                        /*}}}*/
+bool metaIndex::IsArchitectureAllSupportedFor(IndexTarget const &target) const/*{{{*/
+{
+   debReleaseIndex const * const deb = dynamic_cast<debReleaseIndex const *>(this);
+   if (deb != NULL)
+      return deb->IsArchitectureAllSupportedFor(target);
+   return true;
+}
+                                                                       /*}}}*/