]> git.ipfire.org Git - pakfire.git/commitdiff
types.h: Drop unused comparison types
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 30 Jun 2021 17:04:46 +0000 (17:04 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 30 Jun 2021 17:04:46 +0000 (17:04 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/include/pakfire/types.h

index be7193c6e53335d83c8fc00022989fef62d1975b..24d50c687186de44c2d14cce29634d49aafcd359 100644 (file)
@@ -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,