From a07e3e182d1a00af9ce7bfc6b437f72fa84a2d8b Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 16 Dec 2014 22:13:57 -0800 Subject: cp_find_type_baseclass_by_name: Renamed from find_type_baseclass_by_name. gdb/ChangeLog: * cp-namespace.c (cp_find_type_baseclass_by_name): Renamed from find_type_baseclass_by_name. All callers updated. --- gdb/c-exp.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/c-exp.y') diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 92ff3b6..9d1c4c7 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -3019,7 +3019,7 @@ classify_inner_name (struct parser_state *par_state, relative to the `this' pointer. */ if (yylval.ssym.sym == NULL) { - struct type *base_type = find_type_baseclass_by_name (type, copy); + struct type *base_type = cp_find_type_baseclass_by_name (type, copy); if (base_type != NULL) { @@ -3038,7 +3038,7 @@ classify_inner_name (struct parser_state *par_state, named COPY when we really wanted a base class of the same name. Double-check this case by looking for a base class. */ { - struct type *base_type = find_type_baseclass_by_name (type, copy); + struct type *base_type = cp_find_type_baseclass_by_name (type, copy); if (base_type != NULL) { -- cgit v1.1