Changes in src/molecule_geometry.cpp [1614174:3930eb]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule_geometry.cpp
r1614174 r3930eb 101 101 { 102 102 int Num = 0; 103 atom *ptr = start ->next; // start at first in list103 atom *ptr = start; // start at first in list 104 104 105 105 Center.Zero(); 106 106 107 if (ptr != end) { //list not empty?107 if (ptr->next != end) { //list not empty? 108 108 while (ptr->next != end) { // continue with second if present 109 109 ptr = ptr->next;
Note:
See TracChangeset
for help on using the changeset viewer.