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.
This commit is contained in:
Brad King
2016-12-07 11:36:28 -05:00
parent 7552d16d1a
commit c1a5507917

View File

@@ -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)
{