Skip to content
Snippets Groups Projects
Commit 7213fdea authored by Loic Hausammann's avatar Loic Hausammann Committed by Matthieu Schaller
Browse files

Fix CI

parent d5285aa0
No related branches found
No related tags found
No related merge requests found
......@@ -63,12 +63,11 @@ runner_iact_nonsym_sinks_compute_formation(const float r2, const float *dx,
* @param Which particle should be removed?
* Possible value: (sink_merger_remove_none/first/second)
*/
__attribute__((always_inline)) INLINE static int runner_iact_sym_sinks_merger(
const float r2, const float *dx, const float hi, const float hj,
struct sink *restrict si, struct sink *restrict sj, const float a,
const float H) {
return sink_merger_remove_none;
__attribute__((always_inline)) INLINE static enum sink_merger_remove
runner_iact_sym_sinks_merger(const float r2, const float *dx, const float hi,
const float hj, struct sink *restrict si,
struct sink *restrict sj, const float a,
const float H) {
#ifdef DEBUG_INTERACTIONS_SINKS
/* Update ngb counters */
......@@ -78,6 +77,8 @@ __attribute__((always_inline)) INLINE static int runner_iact_sym_sinks_merger(
/* Update ngb counters */
++si->num_ngb_merger;
#endif
return sink_merger_remove_none;
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment