eolian: rename typedef to typedecl to clear name confusion

This commit is contained in:
Daniel Kolesa 2015-12-14 15:52:30 +00:00
parent 87c763ac8b
commit 67f17f1068
2 changed files with 8 additions and 8 deletions

View File

@ -199,12 +199,12 @@ typedef enum
typedef enum
{
EOLIAN_TYPEDEF_UNKNOWN = 0,
EOLIAN_TYPEDEF_STRUCT,
EOLIAN_TYPEDEF_STRUCT_OPAQUE,
EOLIAN_TYPEDEF_ENUM,
EOLIAN_TYPEDEF_ALIAS
} Eolian_Typedef_Type;
EOLIAN_TYPEDECL_UNKNOWN = 0,
EOLIAN_TYPEDECL_STRUCT,
EOLIAN_TYPEDECL_STRUCT_OPAQUE,
EOLIAN_TYPEDECL_ENUM,
EOLIAN_TYPEDECL_ALIAS
} Eolian_Typedecl_Type;
typedef enum
{

View File

@ -183,10 +183,10 @@ struct _Eolian_Type
Eina_Bool is_extern :1;
};
struct _Eolian_Typedef
struct _Eolian_Typedecl
{
Eolian_Object base;
Eolian_Typedef_Type type;
Eolian_Typedecl_Type type;
Eina_Stringshare *name;
Eina_Stringshare *full_name;
Eina_List *namespaces;