comparison liboctave/floatHESS.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 4c0cdbe0acca
children 367bfee35ba0
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
44 : hess_mat (a.hess_mat), unitary_hess_mat (a.unitary_hess_mat) { } 44 : hess_mat (a.hess_mat), unitary_hess_mat (a.unitary_hess_mat) { }
45 45
46 FloatHESS& operator = (const FloatHESS& a) 46 FloatHESS& operator = (const FloatHESS& a)
47 { 47 {
48 if (this != &a) 48 if (this != &a)
49 { 49 {
50 hess_mat = a.hess_mat; 50 hess_mat = a.hess_mat;
51 unitary_hess_mat = a.unitary_hess_mat; 51 unitary_hess_mat = a.unitary_hess_mat;
52 } 52 }
53 return *this; 53 return *this;
54 } 54 }
55 55
56 ~FloatHESS (void) { } 56 ~FloatHESS (void) { }
57 57