From d2f2ffbc39cb33a975d305ef4d13c08a05bd0f5c Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Wed, 8 Nov 2017 15:44:55 +0000 Subject: [PATCH] Intel compiler does not like bit-comparison on enumerated types. Use an integer for the step properties instead. --- src/engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine.h b/src/engine.h index 3613afd9f1..f80589ad3f 100644 --- a/src/engine.h +++ b/src/engine.h @@ -160,7 +160,7 @@ struct engine { size_t updates, g_updates, s_updates; /* Properties of the previous step */ - enum engine_step_properties step_props; + int step_props; /* Total numbers of particles in the system. */ size_t total_nr_parts, total_nr_gparts; -- GitLab