Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit 2672cb3

Browse files
brycelelbachalliepiper
authored andcommitted
thrust/detail/cstdint.h: #include <stdint.h> when using the Intel compiler.
1 parent fb93d57 commit 2672cb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

thrust/detail/cstdint.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
#include <thrust/detail/config.h>
2020

21-
#if (THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_GCC) || (THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_CLANG)
21+
#if (THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_GCC) || \
22+
(THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_CLANG) || \
23+
(THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_INTEL)
2224
#include <stdint.h>
2325
#endif
2426

0 commit comments

Comments
 (0)