X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fgdb-demangle.h;h=e68973f5b37d3e1f0cef489214b1a07e25170725;hb=e623f035020ea7baa64933b4afaaa564b4c7e26d;hp=ccce29fe0001252e52020783d534084f7fa6aad4;hpb=ecd75fc8eed3bde86036141228074a20e55dcfc9;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/gdb-demangle.h b/gdb/gdb-demangle.h index ccce29fe00..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-2014 Free Software Foundation, Inc. + Copyright (C) 2011-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -19,16 +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; + 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 */