summaryrefslogtreecommitdiff
path: root/apt-pkg/indexfile.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2017-12-14 21:44:40 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2017-12-14 21:55:34 +0100
commita6c7b262212d56a4ad37e6475f96152296ab1d0c (patch)
tree25c41fe8fe330239a528142644f6fdf8818b6473 /apt-pkg/indexfile.cc
parent8876bf372f8bf5bc12767a2531587f004e38dc74 (diff)
remove pointless APT_PURE from void functions
Earlier gcc versions used to complain that you should add them althrough there isn't a lot of point to it if you think about it, but now gcc (>= 8) complains about the attribute being present. warning: ‘pure’ attribute on function returning ‘void’ [-Wattributes] Reported-By: gcc -Wattributes Gbp-Dch: Ignore
Diffstat (limited to 'apt-pkg/indexfile.cc')
-rw-r--r--apt-pkg/indexfile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/indexfile.cc b/apt-pkg/indexfile.cc
index 0e205a562..679e2eab8 100644
--- a/apt-pkg/indexfile.cc
+++ b/apt-pkg/indexfile.cc
@@ -407,6 +407,6 @@ pkgCache::PkgFileIterator pkgDebianIndexFile::FindInCache(pkgCache &Cache) const
return File;
}
-APT_PURE pkgIndexFile::~pkgIndexFile() {}
-APT_PURE pkgDebianIndexTargetFile::~pkgDebianIndexTargetFile() {}
-APT_PURE pkgDebianIndexRealFile::~pkgDebianIndexRealFile() {}
+pkgIndexFile::~pkgIndexFile() {}
+pkgDebianIndexTargetFile::~pkgDebianIndexTargetFile() {}
+pkgDebianIndexRealFile::~pkgDebianIndexRealFile() {}