changeset 22701:8e71fd674bcf stable

maint: libinterp/corefcn/fft.cc: minor style fixes for C++ code.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Mon, 31 Oct 2016 12:59:05 +0100
parents a9b4476a734e
children d43094e91ba7
files libinterp/corefcn/fft.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/fft.cc	Mon Oct 31 12:54:05 2016 +0100
+++ b/libinterp/corefcn/fft.cc	Mon Oct 31 12:59:05 2016 +0100
@@ -115,7 +115,7 @@
       octave_value_list idx (ndims);
       for (octave_idx_type i = 0; i < ndims; i++)
         idx(i) = idx_vector::colon;
-      idx(dim) = idx_vector (static_cast <octave_idx_type> (0));
+      idx(dim) = idx_vector (static_cast<octave_idx_type> (0));
 
       return arg.do_index_op (idx);
     }