Skip to content

Commit 6cf66ee

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nvbench/exec_tag.cuh

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

2121
#include <nvbench/flags.cuh>
2222

23-
#include <cuda/std/cstdint>
23+
#include <cstdint>
2424

2525
#include <type_traits>
2626

2727
namespace nvbench::detail
2828
{
2929

3030
// See the similarly named tags in nvbench::exec_tag:: for documentation.
31-
enum class exec_flag : ::cuda::std::uint16_t
31+
enum class exec_flag : std::uint16_t
3232
{
3333
none = 0x0,
3434

0 commit comments

Comments
 (0)