comparison liboctave/CmplxLU.h @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
39 ComplexLU (const ComplexMatrix& a); 39 ComplexLU (const ComplexMatrix& a);
40 40
41 ComplexLU (const ComplexLU& a) 41 ComplexLU (const ComplexLU& a)
42 : base_lu <ComplexMatrix> (a) { } 42 : base_lu <ComplexMatrix> (a) { }
43 43
44 ComplexLU (const ComplexMatrix& l, const ComplexMatrix& u, 44 ComplexLU (const ComplexMatrix& l, const ComplexMatrix& u,
45 const PermMatrix& p) 45 const PermMatrix& p)
46 : base_lu <ComplexMatrix> (l, u, p) { } 46 : base_lu <ComplexMatrix> (l, u, p) { }
47 47
48 ComplexLU& operator = (const ComplexLU& a) 48 ComplexLU& operator = (const ComplexLU& a)
49 { 49 {