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
This commit is contained in:
Paolo Carlini 2003-12-09 22:54:25 +00:00 committed by Paolo Carlini
parent 015fa9712b
commit 7c1ca56950
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-12-09 Paolo Carlini <pcaelini@suse.de>
* include/bits/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):

View File

@ -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; }
};