summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-01-07 22:39:29 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2020-01-07 22:51:41 +0100
commitb911b2f6edaa8ee45b1f860ddf0cf061ccc96e1f (patch)
tree04aef1499999672f8e53ee1b7b56023844d519b6 /apt-pkg/contrib
parent3732fa6e73c8c0c80e8d2b03c002ad66f4e75183 (diff)
Only define likely/unlikely if APT_COMPILING_APT set
This ensures that we do not leak simple words like that.
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r--apt-pkg/contrib/macros.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/contrib/macros.h b/apt-pkg/contrib/macros.h
index 3f2638070..340549fbd 100644
--- a/apt-pkg/contrib/macros.h
+++ b/apt-pkg/contrib/macros.h
@@ -29,6 +29,7 @@
#define APT_GCC_VERSION 0
#endif
+#ifdef APT_COMPILING_APT
/* likely() and unlikely() can be used to mark boolean expressions
as (not) likely true which will help the compiler to optimise */
#if APT_GCC_VERSION >= 0x0300
@@ -38,6 +39,7 @@
#define likely(x) (x)
#define unlikely(x) (x)
#endif
+#endif
#if APT_GCC_VERSION >= 0x0300
#define APT_DEPRECATED __attribute__ ((deprecated))