diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
commit | 7c704c78d3c652504c064b4ac7af55a2c1ee49bb (patch) | |
tree | 623358cf25839219ef4fd90eea4f3eaa55389a1f /cosv/source | |
parent | 0d5167915b47df7c3e450614ea50d845ba959df3 (diff) |
Removed some unused parameters; added SAL_UNUSED_PARAMETER.
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC)
is used to annotate legitimately unused parameters, so that static
analysis tools can tell legitimately unused parameters from truly
unnecessary ones. To that end, some patches for external modules
are also added, that are only applied when compiling with GCC and
add necessary __attribute__ ((unused)) in headers.
Diffstat (limited to 'cosv/source')
-rw-r--r-- | cosv/source/service/std_outp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cosv/source/service/std_outp.cxx b/cosv/source/service/std_outp.cxx index bac720a801f7..d7077b54e876 100644 --- a/cosv/source/service/std_outp.cxx +++ b/cosv/source/service/std_outp.cxx @@ -50,7 +50,7 @@ redirect_out * redirect_out::pStdErr_ = 0; void -Endl( ostream & io_rStream, bool /*bUseRedirect*/, int* ) +Endl( ostream & io_rStream ) { #ifndef CSV_NO_IOSTREAMS // if (NOT bUseRedirect) @@ -61,7 +61,7 @@ Endl( ostream & io_rStream, bool /*bUseRedirect*/, int* ) } void -Flush( ostream & io_rStream, bool /*bUseRedirect*/, int* ) +Flush( ostream & io_rStream ) { #ifndef CSV_NO_IOSTREAMS // if (NOT bUseRedirect) |