Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/atom_particleinfo.cpp

    r5e8e02 rd74077  
    3838ostream & operator << (ostream &ost, const ParticleInfo &a)
    3939{
    40   ost << "[" << a.getName() << "|" << &a << "]";
     40  ost << a.getName();
    4141  return ost;
    4242};
     
    4444ostream & ParticleInfo::operator << (ostream &ost) const
    4545{
    46   ost << "[" << name << "|" << this << "]";
     46  ost << getName();
    4747  return ost;
    4848};
Note: See TracChangeset for help on using the changeset viewer.