From: Michael Tremer Date: Wed, 30 Jun 2021 17:04:46 +0000 (+0000) Subject: types.h: Drop unused comparison types X-Git-Tag: 0.9.28~1145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=309537c64fc4ff6380561a9d3a3df1ba5e4f8cab;p=pakfire.git types.h: Drop unused comparison types Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/include/pakfire/types.h b/src/libpakfire/include/pakfire/types.h index be7193c6e..24d50c687 100644 --- a/src/libpakfire/include/pakfire/types.h +++ b/src/libpakfire/include/pakfire/types.h @@ -35,23 +35,6 @@ typedef struct _PakfireSolution* PakfireSolution; typedef void (*pakfire_log_function_t)(void* data, int priority, const char* file, int line, const char* fn, const char* format, va_list args); -enum _pakfire_comparison_types { - PAKFIRE_ICASE = 1 << 0, - PAKFIRE_NOT = 1 << 1, - PAKFIRE_NAME_ONLY = 1 << 2, - PAKFIRE_SUBSTRING = 1 << 3, - - PAKFIRE_EQ = 1 << 8, - PAKFIRE_LT = 1 << 9, - PAKFIRE_LE = PAKFIRE_EQ|PAKFIRE_LT, - PAKFIRE_GT = 1 << 10, - PAKFIRE_GE = PAKFIRE_EQ|PAKFIRE_GT, - PAKFIRE_NEQ = PAKFIRE_EQ|PAKFIRE_NOT, - - PAKFIRE_SUBSTR = 1 << 11, - PAKFIRE_GLOB = 1 << 12, -}; - typedef enum _pakfire_action_types { PAKFIRE_ACTION_NOOP = 0, PAKFIRE_ACTION_VERIFY = 1 << 0,