fix compilation error on latest intel OpenCL compiler due to missing tagint definition

This commit is contained in:
Axel Kohlmeyer
2021-05-22 13:16:31 -04:00
parent a9427f20b2
commit 0e1fa44b9d

View File

@ -35,6 +35,16 @@ _texture( q_tex,int2);
#endif #endif
#else #else
#ifdef LAMMPS_SMALLBIG
#define tagint int
#endif
#ifdef LAMMPS_BIGBIG
#include "inttypes.h"
#define tagint int64_t
#endif
#ifdef LAMMPS_SMALLSMALL
#define tagint int
#endif
#define pos_tex x_ #define pos_tex x_
#define q_tex q_ #define q_tex q_
#endif #endif