Commit 437974a9 by Neil Booth Committed by Neil Booth

* cplus-dem.c (PREPEND_BLANK): Remove.

From-SVN: r55837
parent 72b075d1
2002-07-29 Neil Booth <neil@daikokuya.co.uk>
* cplus-dem.c (PREPEND_BLANK): Remove.
2002-07-10 Jason Merrill <jason@redhat.com> 2002-07-10 Jason Merrill <jason@redhat.com>
* cp-demangle.c (demangle_identifier): Support extended Unicode * cp-demangle.c (demangle_identifier): Support extended Unicode
......
...@@ -305,8 +305,6 @@ const struct demangler_engine libiberty_demanglers[] = ...@@ -305,8 +305,6 @@ const struct demangler_engine libiberty_demanglers[] =
}; };
#define STRING_EMPTY(str) ((str) -> b == (str) -> p) #define STRING_EMPTY(str) ((str) -> b == (str) -> p)
#define PREPEND_BLANK(str) {if (!STRING_EMPTY(str)) \
string_prepend(str, " ");}
#define APPEND_BLANK(str) {if (!STRING_EMPTY(str)) \ #define APPEND_BLANK(str) {if (!STRING_EMPTY(str)) \
string_append(str, " ");} string_append(str, " ");}
#define LEN_STRING(str) ( (STRING_EMPTY(str))?0:((str)->p - (str)->b)) #define LEN_STRING(str) ( (STRING_EMPTY(str))?0:((str)->p - (str)->b))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment