From a989b0c03fa4c6812ff2a02feaf6b74aa9c0e7cc Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Wed, 15 Nov 2017 11:01:04 -0700
Subject: [PATCH] Code formatting.

---
 src/equation_of_state.h | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/equation_of_state.h b/src/equation_of_state.h
index 13ee246789..76b8bb9221 100644
--- a/src/equation_of_state.h
+++ b/src/equation_of_state.h
@@ -185,7 +185,8 @@ struct eos_parameters {
 /**
  * @brief Returns the internal energy given density and entropy
  *
- * Since we are using an isothermal EoS, the entropy and density values are ignored.
+ * Since we are using an isothermal EoS, the entropy and density values are
+ * ignored.
  * Computes \f$u = u_{cst}\f$.
  *
  * @param density The density \f$\rho\f$.
@@ -232,7 +233,8 @@ __attribute__((always_inline)) INLINE static float gas_entropy_from_pressure(
 /**
  * @brief Returns the sound speed given density and entropy
  *
- * Since we are using an isothermal EoS, the entropy and density values are ignored.
+ * Since we are using an isothermal EoS, the entropy and density values are
+ * ignored.
  * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$.
  *
  * @param density The density \f$\rho\f$.
@@ -293,7 +295,8 @@ gas_internal_energy_from_pressure(float density, float pressure) {
 /**
  * @brief Returns the sound speed given density and internal energy
  *
- * Since we are using an isothermal EoS, the energy and density values are ignored.
+ * Since we are using an isothermal EoS, the energy and density values are
+ * ignored.
  * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$.
  *
  * @param density The density \f$\rho\f$
@@ -309,7 +312,8 @@ gas_soundspeed_from_internal_energy(float density, float u) {
 /**
  * @brief Returns the sound speed given density and pressure
  *
- * Since we are using an isothermal EoS, the pressure and density values are ignored.
+ * Since we are using an isothermal EoS, the pressure and density values are
+ * ignored.
  * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$.
  *
  * @param density The density \f$\rho\f$
-- 
GitLab