Skip to content
Snippets Groups Projects
Commit 5c966fdf authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Compliation problem in DEFAULT_SPH

parent 5a3ca6a9
Branches
Tags
2 merge requests!136Master,!90Improved multi-timestep SPH
...@@ -211,9 +211,12 @@ __attribute__((always_inline)) ...@@ -211,9 +211,12 @@ __attribute__((always_inline))
* @brief Kick the additional variables * @brief Kick the additional variables
* *
* @param p The particle to act upon * @param p The particle to act upon
* @param xp The particle extended data to act upon
* @param dt The time-step for this kick
* @param half_dt The half time-step for this kick
*/ */
__attribute__((always_inline)) __attribute__((always_inline)) INLINE static void hydro_kick_extra(
INLINE static void hydro_kick_extra(struct part* p, float dt) {} struct part* p, struct xpart* xp, float dt, float half_dt) { }
/** /**
* @brief Converts hydro quantity of a particle * @brief Converts hydro quantity of a particle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment