diff options
author | Brad King <brad.king@kitware.com> | 2016-12-07 16:36:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-09 19:19:22 (GMT) |
commit | c1a55079177c256c83ba5ab4bd72555537ba69bf (patch) | |
tree | 61cb2cb6b9ef2f86314688fa169b9d2e2dc74fc7 /Tests/Cuda | |
parent | 7552d16d1a9ccfc86490b1052ed4719a704ae358 (diff) | |
download | CMake-c1a55079177c256c83ba5ab4bd72555537ba69bf.zip CMake-c1a55079177c256c83ba5ab4bd72555537ba69bf.tar.gz CMake-c1a55079177c256c83ba5ab4bd72555537ba69bf.tar.bz2 |
CUDA: Fix Cuda.Complex test case extern function signatures
Make the return types of the extern function declared in `main.cpp`
match those in the method implementations.
Diffstat (limited to 'Tests/Cuda')
-rw-r--r-- | Tests/Cuda/Complex/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Cuda/Complex/main.cpp b/Tests/Cuda/Complex/main.cpp index a72ffd7..32312d0 100644 --- a/Tests/Cuda/Complex/main.cpp +++ b/Tests/Cuda/Complex/main.cpp @@ -3,8 +3,8 @@ #include "file1.h" #include "file2.h" -result_type call_cuda_seperable_code(int x); -result_type mixed_launch_kernel(int x); +int call_cuda_seperable_code(int x); +int mixed_launch_kernel(int x); int main(int argc, char** argv) { |