From: Paolo Carlini Date: Tue, 9 Dec 2003 22:54:25 +0000 (+0000) Subject: demangle.h (struct implementation_details): Keep in comments the names of the unused... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c1ca56950e508e9effafa7de349db2e77f9d7a8;p=gcc.git demangle.h (struct implementation_details): Keep in comments the names of the unused parameters. 2003-12-09 Paolo Carlini * include/bits/demangle.h (struct implementation_details): Keep in comments the names of the unused parameters. From-SVN: r74478 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c2c2da14901..be6c8ab5448 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-12-09 Paolo Carlini + + * include/bits/demangle.h (struct implementation_details): + Keep in comments the names of the unused parameters. + 2003-12-09 Paolo Carlini * include/bits/demangle.h (struct implementation_details): diff --git a/libstdc++-v3/include/bits/demangle.h b/libstdc++-v3/include/bits/demangle.h index 8fd0e3924d0..751e58c871f 100644 --- a/libstdc++-v3/include/bits/demangle.h +++ b/libstdc++-v3/include/bits/demangle.h @@ -335,7 +335,8 @@ namespace __gnu_cxx bool get_style_sizeof_typename(void) const { return (M_style & style_sizeof_typename); } // This can be overridden by user implementations. - virtual bool decode_real(char*, unsigned long*, size_t) const + virtual bool decode_real(char* /* output */, unsigned long* /* input */, + size_t /* size_of_real */) const { return false; } };