Skip to content

Commit 55217f7

Browse files
Avoid cuda/std types in host compiler headers
Fixes: #245
1 parent 38ac5d7 commit 55217f7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nvbench/exec_tag.cuh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@
2020

2121
#include <nvbench/flags.cuh>
2222

23-
#include <cuda/std/cstdint>
24-
23+
#include <cstdint>
2524
#include <type_traits>
2625

2726
namespace nvbench::detail
2827
{
2928

3029
// See the similarly named tags in nvbench::exec_tag:: for documentation.
31-
enum class exec_flag : ::cuda::std::uint16_t
30+
enum class exec_flag : std::uint16_t
3231
{
3332
none = 0x0,
3433

0 commit comments

Comments
 (0)