diff options
| author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-12-23 17:25:29 -0500 |
|---|---|---|
| committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-12-23 17:25:35 -0500 |
| commit | 9aa766da6442bf1649e1f54540bca9f17e563298 (patch) | |
| tree | f144f5570f40ca4088c5a022cd6b32bb93158197 /test cases/cuda/2 split/main.cpp | |
| parent | a910ba133ac330fad6e4dd459da797ba3df982f7 (diff) | |
| download | meson-9aa766da6442bf1649e1f54540bca9f17e563298.tar.gz | |
refactor: cuda no unused args
Diffstat (limited to 'test cases/cuda/2 split/main.cpp')
| -rw-r--r-- | test cases/cuda/2 split/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/cuda/2 split/main.cpp b/test cases/cuda/2 split/main.cpp index e5e6bda06..ce79003e5 100644 --- a/test cases/cuda/2 split/main.cpp +++ b/test cases/cuda/2 split/main.cpp @@ -1,7 +1,7 @@ #include<iostream> -int do_cuda_stuff(); +int do_cuda_stuff(void); -int main(int argc, char **argv) { +int main(void) { return do_cuda_stuff(); } |
