Changeset 075729 for molecuilder/src/atom_particleinfo.cpp
- Timestamp:
- Apr 27, 2010, 2:25:42 PM (15 years ago)
- Children:
- 90c4460
- Parents:
- 1561e2 (diff), 2bc713 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom_particleinfo.cpp
r1561e2 r075729 28 28 ostream & operator << (ostream &ost, const ParticleInfo &a) 29 29 { 30 ost << "[" << a.Name << "|" << &a << "]"; 30 if (a.Name == NULL) 31 ost << "[NULL]"; 32 else 33 ost << "[" << a.Name << "|" << &a << "]"; 31 34 return ost; 32 35 }; … … 34 37 ostream & ParticleInfo::operator << (ostream &ost) const 35 38 { 36 ost << "[" << Name << "|" << this << "]"; 39 if (Name == NULL) 40 ost << "[NULL]"; 41 else 42 ost << "[" << Name << "|" << this << "]"; 37 43 return ost; 38 44 };
Note:
See TracChangeset
for help on using the changeset viewer.