Changes in src/atom_particleinfo.cpp [5e8e02:d74077]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/atom_particleinfo.cpp ¶
r5e8e02 rd74077 38 38 ostream & operator << (ostream &ost, const ParticleInfo &a) 39 39 { 40 ost << "[" << a.getName() << "|" << &a << "]";40 ost << a.getName(); 41 41 return ost; 42 42 }; … … 44 44 ostream & ParticleInfo::operator << (ostream &ost) const 45 45 { 46 ost << "[" << name << "|" << this << "]";46 ost << getName(); 47 47 return ost; 48 48 };
Note:
See TracChangeset
for help on using the changeset viewer.