From c1a55079177c256c83ba5ab4bd72555537ba69bf Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 7 Dec 2016 11:36:28 -0500 Subject: 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. --- Tests/Cuda/Complex/main.cpp | 4 ++-- 1 file 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) { -- cgit v0.12