Merge branch release-2021
[alexxy/gromacs.git] / src / gromacs / mdtypes / checkpointdata.h
index c541d9c85d1389a4ae5e5bbef7bbd06c750fa4da..c63de6bb90c8434ecedd89dcccc48c500e06bacd 100644 (file)
@@ -477,8 +477,7 @@ inline void ReadCheckpointData::arrayRef(const std::string& key, ArrayRef<RVec>
     for (; outputIt != outputEnd && inputIt != inputEnd; outputIt++, inputIt++)
     {
         auto storedRVec = inputIt->asObject()["RVec"].asArray().values();
-        *outputIt       = { storedRVec[XX].cast<real>(), storedRVec[YY].cast<real>(),
-                      storedRVec[ZZ].cast<real>() };
+        *outputIt = { storedRVec[XX].cast<real>(), storedRVec[YY].cast<real>(), storedRVec[ZZ].cast<real>() };
     }
 }