summaryrefslogtreecommitdiff
path: root/apt-pkg/metaindex.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-02-26 18:26:13 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2020-02-26 18:59:31 +0100
commitd36b06d7eb300ca5cbee22b4fcedaefc80585da1 (patch)
tree78f28596305b50bd7cc8c87a8a15eda77b5480ff /apt-pkg/metaindex.cc
parent110078022a6c6103be8f557aef1e268c4b680d88 (diff)
Fix various compiler warnings
Diffstat (limited to 'apt-pkg/metaindex.cc')
-rw-r--r--apt-pkg/metaindex.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/metaindex.cc b/apt-pkg/metaindex.cc
index 06db06f83..fc03f3db0 100644
--- a/apt-pkg/metaindex.cc
+++ b/apt-pkg/metaindex.cc
@@ -131,17 +131,17 @@ void metaIndex::swapLoad(metaIndex * const OldMetaIndex) /*{{{*/
}
/*}}}*/
-bool metaIndex::IsArchitectureSupported(std::string const &arch) const /*{{{*/
+bool metaIndex::IsArchitectureSupported(std::string const &) const /*{{{*/
{
return true;
}
/*}}}*/
-bool metaIndex::IsArchitectureAllSupportedFor(IndexTarget const &target) const/*{{{*/
+bool metaIndex::IsArchitectureAllSupportedFor(IndexTarget const &) const/*{{{*/
{
return true;
}
/*}}}*/
-bool metaIndex::HasSupportForComponent(std::string const &component) const/*{{{*/
+bool metaIndex::HasSupportForComponent(std::string const &) const/*{{{*/
{
return true;
}