From 3b2844328c116cba71c71365507f33f98611e3dc Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 7 Jun 2016 08:37:04 -0400 Subject: [PATCH] Tests/FindOpenCL: Run clang-format to fix style --- Tests/FindOpenCL/Test/main.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Tests/FindOpenCL/Test/main.c b/Tests/FindOpenCL/Test/main.c index b075caf19..dc7763645 100644 --- a/Tests/FindOpenCL/Test/main.c +++ b/Tests/FindOpenCL/Test/main.c @@ -1,16 +1,17 @@ #ifdef __APPLE__ - #include +#include #else - #include +#include #endif int main() { cl_uint platformIdCount; - // We can't assert on the result because this may return an error if no ICD is + // We can't assert on the result because this may return an error if no ICD + // is // found - clGetPlatformIDs (0, NULL, &platformIdCount); + clGetPlatformIDs(0, NULL, &platformIdCount); return 0; }