changeset 25271:125f73286ecf stable

silence compiler warning about unused parameter (bug #53650) * pr-output.h (make_format): Remove identifier of unused parameter 'c' to silence clang compiler warnings from -Wunused-parameter.
author Mike Miller <mtmiller@octave.org>
date Tue, 17 Apr 2018 11:39:07 -0700
parents 6855c9749d9a
children 1f1e1e72e958
files libinterp/corefcn/pr-output.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/pr-output.h	Mon Apr 16 09:19:03 2018 -0700
+++ b/libinterp/corefcn/pr-output.h	Tue Apr 17 11:39:07 2018 -0700
@@ -58,7 +58,7 @@
 
 template <typename T>
 float_display_format
-make_format (const std::complex<T>& c)
+make_format (const std::complex<T>&)
 {
   return float_display_format ();
 }