Changes in src/atom_particleinfo.cpp [b453f9:a3696f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/atom_particleinfo.cpp
rb453f9 ra3696f 22 22 ostream & operator << (ostream &ost, const ParticleInfo &a) 23 23 { 24 ost << "[" << a.Name << "|" << &a << "]"; 24 if (a.Name == NULL) 25 ost << "[NULL]"; 26 else 27 ost << "[" << a.Name << "|" << &a << "]"; 25 28 return ost; 26 29 }; … … 28 31 ostream & ParticleInfo::operator << (ostream &ost) const 29 32 { 30 ost << "[" << Name << "|" << this << "]"; 33 if (Name == NULL) 34 ost << "[NULL]"; 35 else 36 ost << "[" << Name << "|" << this << "]"; 31 37 return ost; 32 38 };
Note:
See TracChangeset
for help on using the changeset viewer.