Ignore:
Timestamp:
Apr 10, 2012, 1:55:49 PM (14 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
a40eea
Parents:
d24c2f
Message:

Merge recent changes of the vmg library into ScaFaCos.

Includes a fix for the communication problems on Jugene.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1666 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/grid/grid_iterator.hpp

    rd24c2f rac6d04  
    2222{
    2323public:
    24   GridIterator()
    25   {
    26     this->index = 0;
    27     this->begin = 0;
    28     this->end = 0;
    29   };
     24  GridIterator() :
     25    index(0),
     26    begin(0),
     27    end(0)
     28  {}
    3029
    31   GridIterator(const Index& index, const Index& begin, const Index& end)
    32   {
    33     this->index = index;
    34     this->begin = begin;
    35     this->end = end;
    36   }
     30  GridIterator(const Index& index, const Index& begin, const Index& end) :
     31    index(index),
     32    begin(begin),
     33    end(end)
     34  {}
    3735
    38   GridIterator(const GridIterator& rhs)
    39   {
    40     this->index = rhs.index;
    41     this->begin = rhs.begin;
    42     this->end = rhs.end;
    43   }
     36  GridIterator(const GridIterator& rhs) :
     37    index(rhs.index),
     38    begin(rhs.begin),
     39    end(rhs.end)
     40  {}
    4441
    4542  virtual ~GridIterator()
     
    5148    this->begin = rhs.begin;
    5249    this->end = rhs.end;
    53 
    5450    return *this;
    5551  }
Note: See TracChangeset for help on using the changeset viewer.