diff liboctave/system/lo-sysinfo.cc @ 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 0a5b15007766
children 796f54d4ddbf
line wrap: on
line diff
--- a/liboctave/system/lo-sysinfo.cc	Sun Nov 28 16:31:21 2021 -0500
+++ b/liboctave/system/lo-sysinfo.cc	Mon Nov 29 10:03:47 2021 -0800
@@ -54,7 +54,7 @@
       // Check for functions that are specific to certain BLAS implementations.
 
       // FlexiBLAS
-      typedef void (*flexi_f_type) (int*, int*, int*);
+      typedef void (*flexi_f_type) (int *, int *, int *);
       flexi_f_type flexi_f_ptr = reinterpret_cast<flexi_f_type>
                                  (dyn_libs.search ("flexiblas_get_version"));
 
@@ -115,7 +115,7 @@
         }
 
       // ACML
-      typedef void (*acml_f_type) (int*, int*, int*);
+      typedef void (*acml_f_type) (int *, int *, int *);
       acml_f_type acml_f_ptr = reinterpret_cast<acml_f_type>
                                (dyn_libs.search ("acmlversion"));
 
@@ -137,7 +137,7 @@
         }
 
       // Intel MKL
-      typedef void (*mkl_f_type) (char*, int);
+      typedef void (*mkl_f_type) (char *, int);
       mkl_f_type mkl_f_ptr = reinterpret_cast<mkl_f_type>
                              (dyn_libs.search ("mkl_get_version_string"));