summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/ProperLinkFlags
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-02-14 15:16:32 (GMT)
committerBrad King <brad.king@kitware.com>2017-02-14 15:20:50 (GMT)
commitc4a6135039a417087b478c031849337316022263 (patch)
tree6b0ce2db3ec8d50fe376edc1021fb52f8e6c8851 /Tests/Cuda/ProperLinkFlags
parent0b2f8ae3ba4ee6077051c97b503e1a165d4938f2 (diff)
downloadCMake-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.cu2
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;
}