diff libinterp/parse-tree/jit-typeinfo.cc @ 25688:b2917b7858ba

maint: Use Octave convention for spacing of C++ cast statements. * PopupMenuControl.cc, __dsearchn__.cc, __magick_read__.cc, cellfun.cc, gl-render.cc, ls-mat5.cc, mex.cc, tsearch.cc, ccolamd.cc, dmperm.cc, ov-bool-mat.h, ov-bool-sparse.cc, ov-cx-mat.cc, ov-cx-sparse.cc, ov-fcn-handle.cc, ov-flt-cx-mat.cc, ov-flt-re-mat.cc, ov-range.cc, ov-re-mat.cc, ov-re-sparse.cc, jit-typeinfo.cc, jit-typeinfo.h, CDiagMatrix.cc, CSparse.cc, MatrixType.h, chNDArray.cc, dDiagMatrix.cc, dNDArray.cc, dSparse.cc, fCDiagMatrix.cc, fDiagMatrix.cc, fNDArray.cc, eigs-base.cc, oct-fftw.cc, sparse-chol.cc, url-transfer.cc: Change cast statements to use no space between cast and '<...>' and one space before the opening '('.
author Rik <rik@octave.org>
date Thu, 26 Jul 2018 16:32:12 -0700
parents 4d7790d9793f
children 12d4271aed87
line wrap: on
line diff
--- a/libinterp/parse-tree/jit-typeinfo.cc	Thu Jul 26 14:44:36 2018 -0700
+++ b/libinterp/parse-tree/jit-typeinfo.cc	Thu Jul 26 16:32:12 2018 -0700
@@ -876,7 +876,7 @@
   jit_operation::to_idx (const std::vector<jit_type*>& types) const
   {
     octave_idx_type numel = types.size ();
-    numel = std::max (numel, static_cast<octave_idx_type>(2));
+    numel = std::max (numel, static_cast<octave_idx_type> (2));
 
     Array<octave_idx_type> idx (dim_vector (1, numel));
     for (octave_idx_type i = 0;