Remove public enum names again
As was reported to me, glib-mkenum does not understand named enums,
so remove for now.
diff --git a/src/hb-common.h b/src/hb-common.h
index 5d9015d..26c056b 100644
--- a/src/hb-common.h
+++ b/src/hb-common.h
@@ -99,7 +99,7 @@
/* hb_direction_t */
-typedef enum _hb_direction_t {
+typedef enum {
HB_DIRECTION_INVALID = 0,
HB_DIRECTION_LTR = 4,
HB_DIRECTION_RTL,
@@ -140,7 +140,7 @@
/* hb_unicode_general_category_t */
-typedef enum _hb_unicode_general_category_t
+typedef enum
{
HB_UNICODE_GENERAL_CATEGORY_CONTROL, /* Cc */
HB_UNICODE_GENERAL_CATEGORY_FORMAT, /* Cf */
@@ -179,7 +179,7 @@
/* http://unicode.org/iso15924/ */
/* http://goo.gl/x9ilM */
-typedef enum _hb_script_t
+typedef enum
{
/* Unicode-1.1 additions */
HB_SCRIPT_COMMON = HB_TAG ('Z','y','y','y'),