X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fgdb-demangle.h;h=e68973f5b37d3e1f0cef489214b1a07e25170725;hb=cf950fd4dd4581849a445a76b57514d72074927d;hp=1e91414835dbe1c5552dc8aa0550b26b30698748;hpb=0b1afbb37b6c21c50564ead74decadc13eba73c5;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/gdb-demangle.h b/gdb/gdb-demangle.h index 1e91414835..e68973f5b3 100644 --- a/gdb/gdb-demangle.h +++ b/gdb/gdb-demangle.h @@ -1,5 +1,5 @@ /* Basic C++ demangling support for GDB. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -19,19 +19,16 @@ #ifndef GDB_DEMANGLE_H #define GDB_DEMANGLE_H -/* Nonzero means that encoded C++/ObjC names should be printed out in their +/* True means that encoded C++/ObjC names should be printed out in their C++/ObjC form rather than raw. */ -extern int demangle; +extern bool demangle; -/* Nonzero means that encoded C++/ObjC names should be printed out in their +/* True means that encoded C++/ObjC names should be printed out in their C++/ObjC form even in assembler language displays. If this is set, but - DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */ -extern int asm_demangle; - -/* Fake a "set demangle-style" command. */ -extern void set_demangling_style (char *); + DEMANGLE is false, names are printed raw, i.e. DEMANGLE controls. */ +extern bool asm_demangle; /* Check if a character is one of the commonly used C++ marker characters. */ -extern int is_cplus_marker (int); +extern bool is_cplus_marker (int); #endif /* GDB_DEMANGLE_H */