diff --git a/blast/src/blSolver.h b/blast/src/blSolver.h
index b882fb96e9eec7db17d2dd8630da19c9f8dbf70b..b846a5d1b9dc91e46ae2dff0d74693d71aa274c8 100644
--- a/blast/src/blSolver.h
+++ b/blast/src/blSolver.h
@@ -17,13 +17,13 @@ class BLAST_API Solver
 {
 
 private:
-    bldouble CFL0;               ///< Initial CFL number.
-    unsigned int maxIt;        ///< Maximum number of iterations.
-    bldouble tol;                ///< Convergence tolerance.
-    unsigned int itFrozenJac0; ///< Number of iterations between which the
-                               ///< Jacobian is frozen.
-    bldouble const gamma = 1.4;  ///< Air heat capacity ratio.
-    bldouble Minf;               ///< Freestream Mach number.
+    bldouble CFL0;              ///< Initial CFL number.
+    unsigned int maxIt;         ///< Maximum number of iterations.
+    bldouble tol;               ///< Convergence tolerance.
+    unsigned int itFrozenJac0;  ///< Number of iterations between which the
+                                ///< Jacobian is frozen.
+    bldouble const gamma = 1.4; ///< Air heat capacity ratio.
+    bldouble Minf;              ///< Freestream Mach number.
 
     Fluxes *sysMatrix;