*** empty log message ***

This commit is contained in:
jiri 2006-05-28 14:53:36 +00:00
parent fcb39fe606
commit 95129aee4b
1 changed files with 1 additions and 1 deletions

View File

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