Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / python_packaging / src / gmxapi / module.cpp
index 0496dc2b8a49b8e2960729e328133abd234e0ab4..1601cbae142441d23d9309a38018f7d91c1b130f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2019, by the GROMACS development team, led by
+ * Copyright (c) 2019,2020, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -88,7 +88,8 @@ PYBIND11_MODULE(_gmxapi, m)
     export_exceptions(m);
 
     // Export core bindings
-    m.def("has_feature", &gmxapi::Version::hasFeature,
+    m.def("has_feature",
+          &gmxapi::Version::hasFeature,
           "Check the gmxapi library for a named feature.");
 
     py::class_<::gmxapi::Status> gmx_status(m, "Status", "Holds status for API operations.");