X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=entity.c;h=a31b8865e6ba9bdbe478e8e9806ef636a21ee1bd;hb=22d24ddd2209686fa723a62ccc19b7c2eea2d172;hp=26bc94ad182c044a8f2bc00b85f58aec3b0dcaa9;hpb=a139c2d11a78169c8bef9edc888c8db835f93511;p=cparser diff --git a/entity.c b/entity.c index 26bc94a..a31b886 100644 --- a/entity.c +++ b/entity.c @@ -1,6 +1,6 @@ /* * This file is part of cparser. - * Copyright (C) 2007-2008 Matthias Braun + * Copyright (C) 2007-2009 Matthias Braun * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -29,6 +29,7 @@ const char *get_entity_kind_name(entity_kind_t kind) case ENTITY_VARIABLE: return "variable"; case ENTITY_PARAMETER: return "parameter"; case ENTITY_COMPOUND_MEMBER: return "compound member"; + case ENTITY_CLASS: return "class"; case ENTITY_STRUCT: return "struct"; case ENTITY_UNION: return "union"; case ENTITY_ENUM: return "enum";