Skip to content

Commit

Permalink
Merge pull request #1515 from MRtrix3/only_include_xmmintrin_if_used
Browse files Browse the repository at this point in the history
only include xmmintrin.h header if actually used
  • Loading branch information
jdtournier committed Dec 13, 2018
2 parents ae63c77 + 6fb754b commit 2b8e7d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/command.h
Expand Up @@ -17,7 +17,10 @@
#define __command_h__


#include <xmmintrin.h>
#ifdef FLUSH_TO_ZERO
# include <xmmintrin.h>
#endif

#include "app.h"
#include "exec_version.h"
#ifdef MRTRIX_PROJECT
Expand Down

0 comments on commit 2b8e7d0

Please sign in to comment.