X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=entity.c;h=a31b8865e6ba9bdbe478e8e9806ef636a21ee1bd;hb=186d5bcc3728b067e243cf45171d4f037f0ead3e;hp=37d22c00b716208b44e3d7984396b7db80d919ce;hpb=beeb51cc97aa077897c804b3e7602f9acc60d4fb;p=cparser diff --git a/entity.c b/entity.c index 37d22c0..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 @@ -28,7 +28,8 @@ const char *get_entity_kind_name(entity_kind_t kind) case ENTITY_FUNCTION: return "function"; case ENTITY_VARIABLE: return "variable"; case ENTITY_PARAMETER: return "parameter"; - case ENTITY_COMPOUND_MEMBER: return "compound type member"; + 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";