You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
9 years ago
|
From 687378760fdbb432c0e4676cd499a140a6fe1b11 Mon Sep 17 00:00:00 2001
|
||
|
From: David Tardon <dtardon@redhat.com>
|
||
|
Date: Wed, 23 Mar 2016 14:07:48 +0100
|
||
|
Subject: [PATCH] enum must be declared before it's used
|
||
|
|
||
|
---
|
||
|
liblangtag/lt-tag.h | 26 +++++++++++++-------------
|
||
|
1 file changed, 13 insertions(+), 13 deletions(-)
|
||
|
|
||
|
diff --git a/liblangtag/lt-tag.h b/liblangtag/lt-tag.h
|
||
|
index f4cbb76..3afd7b5 100644
|
||
|
--- a/liblangtag/lt-tag.h
|
||
|
+++ b/liblangtag/lt-tag.h
|
||
|
@@ -37,6 +37,19 @@ LT_BEGIN_DECLS
|
||
|
*/
|
||
|
typedef struct _lt_tag_t lt_tag_t;
|
||
|
|
||
|
+enum _lt_tag_filter_t {
|
||
|
+ LT_TAG_FILTER_NONE = 0,
|
||
|
+ LT_TAG_FILTER_LANGUAGE = 1 << 0,
|
||
|
+ LT_TAG_FILTER_EXTLANG = 1 << 1,
|
||
|
+ LT_TAG_FILTER_SCRIPT = 1 << 2,
|
||
|
+ LT_TAG_FILTER_REGION = 1 << 3,
|
||
|
+ LT_TAG_FILTER_VARIANT = 1 << 4,
|
||
|
+ LT_TAG_FILTER_EXTENSION = 1 << 5,
|
||
|
+ LT_TAG_FILTER_PRIVATEUSE = 1 << 6,
|
||
|
+ LT_TAG_FILTER_GRANDFATHERED = 1 << 7,
|
||
|
+ LT_TAG_FILTER_ALL = -1
|
||
|
+};
|
||
|
+
|
||
|
/**
|
||
|
* lt_tag_filter_t:
|
||
|
* @LT_TAG_FILTER_NONE: all of objects filtered.
|
||
|
@@ -55,19 +68,6 @@ typedef struct _lt_tag_t lt_tag_t;
|
||
|
*/
|
||
|
typedef enum _lt_tag_filter_t lt_tag_filter_t;
|
||
|
|
||
|
-enum _lt_tag_filter_t {
|
||
|
- LT_TAG_FILTER_NONE = 0,
|
||
|
- LT_TAG_FILTER_LANGUAGE = 1 << 0,
|
||
|
- LT_TAG_FILTER_EXTLANG = 1 << 1,
|
||
|
- LT_TAG_FILTER_SCRIPT = 1 << 2,
|
||
|
- LT_TAG_FILTER_REGION = 1 << 3,
|
||
|
- LT_TAG_FILTER_VARIANT = 1 << 4,
|
||
|
- LT_TAG_FILTER_EXTENSION = 1 << 5,
|
||
|
- LT_TAG_FILTER_PRIVATEUSE = 1 << 6,
|
||
|
- LT_TAG_FILTER_GRANDFATHERED = 1 << 7,
|
||
|
- LT_TAG_FILTER_ALL = -1
|
||
|
-};
|
||
|
-
|
||
|
lt_tag_t *lt_tag_new (void);
|
||
|
lt_tag_t *lt_tag_ref (lt_tag_t *tag);
|
||
|
void lt_tag_unref (lt_tag_t *tag);
|
||
|
--
|
||
|
2.5.0
|
||
|
|