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

Merge branch 'fix_intel_ci' into 'master'

Fix CI

See merge request !1303
parents d5285aa0 7213fdea
No related branches found
No related tags found
1 merge request!1303Fix CI
......@@ -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