diff liboctave/numeric/CollocWt.h @ 30394:f3f3e3793fb5 stable

maint: style check C++ files in liboctave/ ahead of 7.1 release. * Array.cc, Array.h, CMatrix.cc, CSparse.cc, MArray.cc, MSparse.cc, MatrixType.cc, MatrixType.h, Range.cc, Range.h, Sparse.cc, Sparse.h, dMatrix.cc, dSparse.cc, fCMatrix.cc, fCMatrix.h, fMatrix.cc, fMatrix.h, idx-vector.cc, idx-vector.h, CollocWt.cc, CollocWt.h, DASPK.cc, DASRT.cc, DASSL.cc, EIG.cc, LSODE.cc, Quad.cc, aepbalance.cc, chol.cc, eigs-base.cc, gepbalance.cc, gsvd.cc, lo-amos-proto.h, lo-arpack-proto.h, lo-blas-proto.h, lo-lapack-proto.h, lo-qrupdate-proto.h, lo-specfun.cc, oct-convn.h, oct-fftw.h, oct-norm.cc, oct-spparms.cc, randmtzig.cc, sparse-chol.cc, sparse-dmsolve.cc, sparse-lu.cc, sparse-qr.cc, sparse-qr.h, svd.cc, file-ops.cc, file-stat.cc, lo-sysinfo.cc, oct-env.cc, f77-fcn.h, lo-cutils.h, lo-ieee.h, lo-regexp.cc, lo-utils.cc, oct-binmap.h, oct-inttypes.h, oct-sparse.cc, oct-sparse.h, oct-string.cc, url-transfer.cc: Style check C++ files in liboctave/ ahead of 7.1 release.
author Rik <rik@octave.org>
date Mon, 29 Nov 2021 10:03:47 -0800
parents 4c88a452519c
children 796f54d4ddbf
line wrap: on
line diff
--- a/liboctave/numeric/CollocWt.h	Sun Nov 28 16:31:21 2021 -0500
+++ b/liboctave/numeric/CollocWt.h	Mon Nov 29 10:03:47 2021 -0800
@@ -80,57 +80,57 @@
     ~CollocWt (void) = default;
 
     CollocWt& resize (octave_idx_type nc)
-      {
-        m_n = nc;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_n = nc;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& add_left (void)
-      {
-        m_inc_left = 1;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_inc_left = 1;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& delete_left (void)
-      {
-        m_inc_left = 0;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_inc_left = 0;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& set_left (double val);
 
     CollocWt& add_right (void)
-      {
-        m_inc_right = 1;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_inc_right = 1;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& delete_right (void)
-      {
-        m_inc_right = 0;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_inc_right = 0;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& set_right (double val);
 
     CollocWt& set_alpha (double val)
-      {
-        m_alpha = val;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_alpha = val;
+      m_initialized = false;
+      return *this;
+    }
 
     CollocWt& set_beta (double val)
-      {
-        m_beta = val;
-        m_initialized = false;
-        return *this;
-      }
+    {
+      m_beta = val;
+      m_initialized = false;
+      return *this;
+    }
 
     octave_idx_type ncol (void) const { return m_n; }