Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / testutils / cmdlinetest.cpp
index 9746d3ba511b95aeba2165f2e4df0796cd66e8b8..ab2b4c0b2eb9a8dc75d0fd4d784e657d4c2d2b49 100644 (file)
@@ -114,8 +114,8 @@ namespace
 std::vector<const char*> convertFromStringArrayRef(const ArrayRef<const std::string>& cmdline)
 {
     std::vector<const char*> v(cmdline.size());
-    std::transform(cmdline.begin(), cmdline.end(), v.begin(),
-                   [](const std::string& s) { return s.c_str(); });
+    std::transform(
+            cmdline.begin(), cmdline.end(), v.begin(), [](const std::string& s) { return s.c_str(); });
     return v;
 }