*** empty log message ***

This commit is contained in:
jiri 2004-03-25 15:27:19 +00:00
parent ebf23744a2
commit b3b6560b8d
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ ostream& operator<<(ostream &s, const fourindex<I,T> &x)
int n;
n=x.size();
s << n << '\n';
typename fourindex<I,T>::iterator it=x.begin();
while(it!=x.end())
typename fourindex<I,T>::iterator it=x.begin(),end=x.end();
while(it!=end)
{
s << (int)it->index.indiv.i << ' ' << (int)it->index.indiv.j<< ' ' <<(int)it->index.indiv.k << ' ' << (int)it->index.indiv.l << ' ' << it->elem << '\n';
++it;