Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 68fa1341 authored by Olivier COULAUD's avatar Olivier COULAUD
Browse files

Fix problem with includes for ccpcheck

parent d98c38b6
No related branches found
No related tags found
No related merge requests found
// See LICENCE file at project root
///
/// File generated by cmake
// Do not remove any line
///////////////////////////////////////////////////////
#ifndef SSCALFMMCONFIG_H
#define SSCALFMMCONFIG_H
///////////////////////////////////////////////////////
......
......@@ -5,9 +5,10 @@
#include "FGlobal.hpp"
#ifndef SCALFMM_USE_AVX
#error The AVX header is included while SCALFMM_USE_AVX is turned OFF
#endif
#else
#include "immintrin.h"
#include <immintrin.h>
#ifdef __AVXPE_INTEL_COMPILER
......@@ -80,5 +81,5 @@ inline __m256 operator/(const __m256& v1, const __m256& v2){
}
#endif
#endif
#endif
......@@ -7,7 +7,7 @@
#error The AVX header is included while SCALFMM_USE_AVX is turned OFF
#endif
#include "immintrin.h"
#include <immintrin.h>
#ifdef __MIC__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment