comparison liboctave/numeric/base-qr.h @ 21177:a10f60e13243

style fixes in liboctave/numeric directory * base-qr.h, randgamma.h, randmtzig.h, randpoisson.h, sparse-chol.cc, sparse-chol.h, sparse-dmsolve.cc, sparse-lu.cc, sparse-lu.h, sparse-qr.cc, sparse-qr.h, oct-sparse.h: Style fixes.
author John W. Eaton <jwe@octave.org>
date Tue, 02 Feb 2016 16:53:01 -0500
parents 538b57866b90
children 8e317ce26a24
comparison
equal deleted inserted replaced
21176:791dcb32b657 21177:a10f60e13243
53 if (this != &a) 53 if (this != &a)
54 { 54 {
55 q = a.q; 55 q = a.q;
56 r = a.r; 56 r = a.r;
57 } 57 }
58
58 return *this; 59 return *this;
59 } 60 }
60 61
61 virtual ~base_qr (void) { } 62 virtual ~base_qr (void) { }
62 63
72 73
73 qr_type q; 74 qr_type q;
74 qr_type r; 75 qr_type r;
75 }; 76 };
76 77
77 #ifndef HAVE_QRUPDATE 78 #if ! defined (HAVE_QRUPDATE)
78 void warn_qrupdate_once (void); 79 extern void warn_qrupdate_once (void);
79 #endif 80 #endif
80 81
81 #endif 82 #endif