diff liboctave/CmplxCHOL.h @ 4055:7690958e7726

[project @ 2002-08-18 01:56:58 by jwe]
author jwe
date Sun, 18 Aug 2002 01:56:59 +0000
parents 5eef8a2294bd
children 6e86256e9c54
line wrap: on
line diff
--- a/liboctave/CmplxCHOL.h
+++ b/liboctave/CmplxCHOL.h
@@ -38,17 +38,17 @@
 
   ComplexCHOL (void) : chol_mat () { }
 
-  ComplexCHOL::ComplexCHOL (const ComplexMatrix& a) { init (a); }
+  ComplexCHOL (const ComplexMatrix& a) { init (a); }
 
-  ComplexCHOL::ComplexCHOL (const ComplexMatrix& a, int& info)
+  ComplexCHOL (const ComplexMatrix& a, int& info)
     {
       info = init (a);
     }
 
-  ComplexCHOL::ComplexCHOL (const ComplexCHOL& a)
+  ComplexCHOL (const ComplexCHOL& a)
     : chol_mat (a.chol_mat) { }
 
-  ComplexCHOL& ComplexCHOL::operator = (const ComplexCHOL& a)
+  ComplexCHOL& operator = (const ComplexCHOL& a)
     {
       if (this != &a)
 	chol_mat = a.chol_mat;
@@ -56,7 +56,7 @@
       return *this;
     }
 
-  ComplexMatrix ComplexCHOL::chol_matrix (void) const
+  ComplexMatrix chol_matrix (void) const
     {
       return chol_mat;
     }