diff options
author | Paolo Carlini <pcarlini@suse.de> | 2003-12-09 22:54:25 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2003-12-09 22:54:25 +0000 |
commit | 7c1ca56950e508e9effafa7de349db2e77f9d7a8 (patch) | |
tree | 64a85cb3e313a5b87f0ef7a276fc175b4ddd18b8 /libstdc++-v3/include | |
parent | 015fa9712b0459ab97994d3a58ad85b1850f4e8b (diff) | |
download | gcc-7c1ca56950e508e9effafa7de349db2e77f9d7a8.zip gcc-7c1ca56950e508e9effafa7de349db2e77f9d7a8.tar.gz gcc-7c1ca56950e508e9effafa7de349db2e77f9d7a8.tar.bz2 |
demangle.h (struct implementation_details): Keep in comments the names of the unused parameters.
2003-12-09 Paolo Carlini <pcaelini@suse.de>
* include/bits/demangle.h (struct implementation_details):
Keep in comments the names of the unused parameters.
From-SVN: r74478
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r-- | libstdc++-v3/include/bits/demangle.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/demangle.h b/libstdc++-v3/include/bits/demangle.h index 8fd0e39..751e58c 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; } }; |