summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-method.h
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2014-03-21 16:26:01 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2014-03-21 16:26:01 +0100
commitce62f1def6565375ce9c56eb1237ccdc0ca138ba (patch)
tree54dcf297b128bc79c730480ce321bb2df655e3ab /apt-pkg/acquire-method.h
parent63ff42089863cda53aee240ea0124106e8b4d983 (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.h4
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();
};
/** @} */