*** empty log message ***

This commit is contained in:
jiri 2006-10-28 20:11:06 +00:00
parent 4f3d079afa
commit 5c3e04b18b
1 changed files with 1 additions and 0 deletions

1
smat.h
View File

@ -92,6 +92,7 @@ inline NRSMat<T>::NRSMat(const T& a, const int n) : nn(n),
{
*count =1;
if(a != (T)0) for(int i=0; i<NN2; i++) v[i] = a;
else memset(v, 0, NN2*sizeof(T));
}
template <typename T>