changeset 21890:5dc59e7af536

* file-ops.cc (file_ops::is_dev_sep): Tag unused parameter.
author John W. Eaton <jwe@octave.org>
date Mon, 13 Jun 2016 18:42:02 -0400
parents 69afa5dce885
children 3ca0a5b1b313
files liboctave/system/file-ops.cc
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/system/file-ops.cc	Mon Jun 13 18:36:16 2016 -0400
+++ b/liboctave/system/file-ops.cc	Mon Jun 13 18:42:02 2016 -0400
@@ -286,6 +286,8 @@
 #if (defined (OCTAVE_HAVE_WINDOWS_FILESYSTEM) && ! defined (OCTAVE_HAVE_POSIX_FILESYSTEM))
       return c == dev_sep_char ();
 #else
+      octave_unused_parameter (c);
+
       return false;
 #endif
     }