Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / listed_forces / utilities.h
index 3f4efac784532c57fd46cf79778593eb0f1d92e5..aee43d9ac96f9892aa6c3247414ae89011e43274 100644 (file)
  *
  * \todo This function could go away when idef is not a big bucket of
  * everything. */
-static bool
-ftype_is_bonded_potential(int ftype)
+static bool ftype_is_bonded_potential(int ftype)
 {
-    return
-        ((interaction_function[ftype].flags & IF_BOND) != 0U) &&
-        !(ftype == F_CONNBONDS || ftype == F_POSRES || ftype == F_FBPOSRES);
+    return ((interaction_function[ftype].flags & IF_BOND) != 0U)
+           && !(ftype == F_CONNBONDS || ftype == F_POSRES || ftype == F_FBPOSRES);
 }
 
 #endif