diff --git a/include/cuda/std/tuple b/include/cuda/std/tuple index 5161b8e0aa..0c6d67587d 100644 --- a/include/cuda/std/tuple +++ b/include/cuda/std/tuple @@ -10,6 +10,12 @@ #ifndef _CUDA_TUPLE #define _CUDA_TUPLE +#if !defined(__CUDACC_RTC__) +// Fetch utility to get primary template for ::std::tuple_size necessary for the specialization of +// ::std::tuple_size to enable structured bindings. See https://github.com/NVIDIA/libcudacxx/issues/316 +#include +#endif + #include "cstdint" #include "climits" @@ -29,5 +35,3 @@ #include "detail/__pragma_pop" #endif //_CUDA_TUPLE - - diff --git a/include/cuda/std/utility b/include/cuda/std/utility index 0a567ab614..24650fab37 100644 --- a/include/cuda/std/utility +++ b/include/cuda/std/utility @@ -10,6 +10,11 @@ #ifndef _CUDA_UTILITY #define _CUDA_UTILITY +#if !defined(__CUDACC_RTC__) +// Fetch utility to populate tuple_size +#include +#endif + #include "type_traits" #include "version" @@ -23,5 +28,3 @@ #include "detail/__pragma_pop" #endif //_CUDA_UTILITY - -