Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / gromacs / mdtypes / checkpointdata.h
index a01f7de82203ecf470b12828fe015bc111e1f6e2..d8ae5e02fc056483b3639a7cdb1f66a0406d03c3 100644 (file)
@@ -466,8 +466,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>() };
     }
 }