Apply clang-format-11
[alexxy/gromacs.git] / src / gromacs / random / normaldistribution.h
index 4380758705f52d7f9d2fd7e0bdb890efc11d9a02..0925bf268926474e2fbb4ae01bdb00447541cab3 100644 (file)
@@ -126,8 +126,7 @@ public:
          * \param stddev   Standard deviation of normal distribution
          */
         explicit param_type(result_type mean = 0.0, result_type stddev = 1.0) :
-            mean_(mean),
-            stddev_(stddev)
+            mean_(mean), stddev_(stddev)
         {
         }
 
@@ -158,9 +157,7 @@ public:
      * \param stddev   Standard deviation of normal distribution
      */
     explicit NormalDistribution(result_type mean = 0.0, result_type stddev = 1.0) :
-        param_(param_type(mean, stddev)),
-        hot_(false),
-        saved_(0)
+        param_(param_type(mean, stddev)), hot_(false), saved_(0)
     {
     }