Changes in src/atom.cpp [68f03d:920c70]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/atom.cpp
r68f03d r920c70 270 270 { 271 271 if (ComponentNr != NULL) 272 Free(&ComponentNr);273 ComponentNr = Malloc<int>(ListOfBonds.size()+1, "atom::InitComponentNumbers: *ComponentNr");272 delete[](ComponentNr); 273 ComponentNr = new int[ListOfBonds.size()+1]; 274 274 for (int i=ListOfBonds.size()+1;i--;) 275 275 ComponentNr[i] = -1;
Note:
See TracChangeset
for help on using the changeset viewer.