mirror of
https://github.com/reactos/CMake.git
synced 2025-02-12 06:51:00 +00:00
10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
|
|
#include <type_traits>
|
|
|
|
using tt = std::true_type;
|
|
using ft = std::false_type;
|
|
int __host__ static_cuda11_func(int x)
|
|
{
|
|
return x * x + std::integral_constant<int, 17>::value;
|
|
}
|