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

Intel compiler does not like bit-comparison on enumerated types. Use an...

Intel compiler does not like bit-comparison on enumerated types. Use an integer for the step properties instead.
parent b35e7191
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment