diff options
author | Brad King <brad.king@kitware.com> | 2017-02-14 15:16:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-14 15:20:50 (GMT) |
commit | c4a6135039a417087b478c031849337316022263 (patch) | |
tree | 6b0ce2db3ec8d50fe376edc1021fb52f8e6c8851 /Tests/Cuda/ProperLinkFlags | |
parent | 0b2f8ae3ba4ee6077051c97b503e1a165d4938f2 (diff) | |
download | CMake-c4a6135039a417087b478c031849337316022263.zip CMake-c4a6135039a417087b478c031849337316022263.tar.gz CMake-c4a6135039a417087b478c031849337316022263.tar.bz2 |
Tests: Run clang-format on CUDA code
Diffstat (limited to 'Tests/Cuda/ProperLinkFlags')
-rw-r--r-- | Tests/Cuda/ProperLinkFlags/file1.cu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Cuda/ProperLinkFlags/file1.cu b/Tests/Cuda/ProperLinkFlags/file1.cu index d93dc9f..9a105f0 100644 --- a/Tests/Cuda/ProperLinkFlags/file1.cu +++ b/Tests/Cuda/ProperLinkFlags/file1.cu @@ -6,6 +6,6 @@ result_type __device__ file1_func(int x) __ldg(&x); result_type r; r.input = x; - r.sum = x*x; + r.sum = x * x; return r; } |