*** empty log message ***

This commit is contained in:
jiri 2004-03-24 16:25:47 +00:00
parent 2188e0fa68
commit ebf23744a2
2 changed files with 2 additions and 2 deletions

2
mat.h
View File

@ -361,7 +361,7 @@ NRMat<T> & NRMat<T>::operator=(const NRMat<T> &rhs)
nn = rhs.nn;
mm = rhs.mm;
count = rhs.count;
if (count) (*count)--;
if (count) (*count)++;
}
return *this;
}

2
t.cc
View File

@ -25,7 +25,7 @@ void f2(double *c)
inline int randind(const int n)
{
return int(random()/(1.+RAND_MAX)*n);
return int(random()/(1.+RAND_MAX)*n);
}
complex<double> mycident (const complex<double>&x) {return x;}