diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-03-21 16:26:01 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-03-21 16:26:01 +0100 |
commit | ce62f1def6565375ce9c56eb1237ccdc0ca138ba (patch) | |
tree | 54dcf297b128bc79c730480ce321bb2df655e3ab /apt-pkg/acquire-method.h | |
parent | 63ff42089863cda53aee240ea0124106e8b4d983 (diff) |
mark optional (private) symbols as hidden
This methods should not be used by anyone expect the library itself as
they are helpers for the specific class and therefore perfect candidates
for hidding.
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/acquire-method.h')
-rw-r--r-- | apt-pkg/acquire-method.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index f0f2a537a..221ccf273 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -20,6 +20,8 @@ #ifndef PKGLIB_ACQUIRE_METHOD_H #define PKGLIB_ACQUIRE_METHOD_H +#include <apt-pkg/macros.h> + #include <stdarg.h> #include <time.h> @@ -107,7 +109,7 @@ class pkgAcqMethod virtual ~pkgAcqMethod() {}; private: - void Dequeue(); + APT_HIDDEN void Dequeue(); }; /** @} */ |