Commit 3044d83c authored by Jacob Gissinger's avatar Jacob Gissinger
Browse files

Update fix_bond_react.cpp

parent 5be366bf
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -577,11 +577,9 @@ FixBondReact::~FixBondReact()
  delete [] set;

  if (group) {
    std::string cmd = fmt::format("{} delete",master_group);
    group->assign(cmd);
    group->assign(std::string(master_group) + " delete");
    if (stabilization_flag == 1) {
      cmd = fmt::format("{} delete",exclude_group);
      group->assign(cmd);
      group->assign(std::string(exclude_group) + " delete");
      delete [] exclude_group;
    }
  }