Apply clang-format-11
[alexxy/gromacs.git] / src / gromacs / tables / cubicsplinetable.cpp
index dcbdbfe7a2a8d6c83b6b710679f5a0da097cbf07..740296624ba825ec394e2aa5f91bf2de64ad9491 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2016,2017,2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2016,2017,2018,2019,2020,2021, 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.
@@ -306,8 +306,7 @@ const real CubicSplineTable::defaultTolerance = 10.0 * GMX_FLOAT_EPS;
 CubicSplineTable::CubicSplineTable(std::initializer_list<AnalyticalSplineTableInput> analyticalInputList,
                                    const std::pair<real, real>&                      range,
                                    real                                              tolerance) :
-    numFuncInTable_(analyticalInputList.size()),
-    range_(range)
+    numFuncInTable_(analyticalInputList.size()), range_(range)
 {
     // Sanity check on input values
     if (range_.first < 0.0 || (range_.second - range_.first) < 0.001)
@@ -395,8 +394,7 @@ CubicSplineTable::CubicSplineTable(std::initializer_list<AnalyticalSplineTableIn
 CubicSplineTable::CubicSplineTable(std::initializer_list<NumericalSplineTableInput> numericalInputList,
                                    const std::pair<real, real>&                     range,
                                    real                                             tolerance) :
-    numFuncInTable_(numericalInputList.size()),
-    range_(range)
+    numFuncInTable_(numericalInputList.size()), range_(range)
 {
     // Sanity check on input values
     if (range.first < 0.0 || (range.second - range.first) < 0.001)