Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / gpp_bond_atomtype.cpp
index 395bf76067b574131085025d86cf6ffc7cbb6f8b..887d54743a867b24fa69143576d954800356fc3c 100644 (file)
@@ -59,9 +59,9 @@ public:
 int PreprocessingBondAtomType::bondAtomTypeFromName(const std::string& str) const
 {
     /* Atom types are always case sensitive */
-    auto found =
-            std::find_if(impl_->typeNames.begin(), impl_->typeNames.end(),
-                         [&str](const auto& type) { return str == const_cast<const char*>(*type); });
+    auto found = std::find_if(impl_->typeNames.begin(), impl_->typeNames.end(), [&str](const auto& type) {
+        return str == const_cast<const char*>(*type);
+    });
     if (found == impl_->typeNames.end())
     {
         return NOTSET;