From cb55223679df8c9a7f5d06650455e09b8bd3e324 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Wed, 18 Mar 2009 00:07:38 +0000 Subject: merge from gcc --- include/demangle.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/demangle.h') diff --git a/include/demangle.h b/include/demangle.h index 28c69f5e7..eb39c7c13 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -221,6 +221,8 @@ enum demangle_component_type /* A template parameter. This holds a number, which is the template parameter index. */ DEMANGLE_COMPONENT_TEMPLATE_PARAM, + /* A function parameter. This holds a number, which is the index. */ + DEMANGLE_COMPONENT_FUNCTION_PARAM, /* A constructor. This holds a name and the kind of constructor. */ DEMANGLE_COMPONENT_CTOR, @@ -466,10 +468,10 @@ struct demangle_component int len; } s_string; - /* For DEMANGLE_COMPONENT_TEMPLATE_PARAM. */ + /* For DEMANGLE_COMPONENT_*_PARAM. */ struct { - /* Template parameter index. */ + /* Parameter index. */ long number; } s_number; -- cgit v1.2.3