Commit 6e866f82 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

correct typo (missing increment operator) in fix bond/react

parent 01163c9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2560,7 +2560,7 @@ void FixBondReact::update_everything()
        else {
          for (int j = 0; j < atom->num_improper[i]; j++) {
            int m = atom->map(atom->improper_atom2[i][j]);
            if (m >= 0 && m < nlocal) delta_imprp;
            if (m >= 0 && m < nlocal) delta_imprp++;
          }
        }
      }