From a5377516cb7ef6a4a5f2baea23fa8ed1706cb29c Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Thu, 29 Mar 2018 20:01:16 +0800 Subject: [PATCH] Fix cpplint --- mace/core/runtime/opencl/opencl_runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mace/core/runtime/opencl/opencl_runtime.cc b/mace/core/runtime/opencl/opencl_runtime.cc index 331ae896..01f370c5 100644 --- a/mace/core/runtime/opencl/opencl_runtime.cc +++ b/mace/core/runtime/opencl/opencl_runtime.cc @@ -41,7 +41,7 @@ bool WriteFile(const std::string &filename, } // namespace const std::string OpenCLErrorToString(cl_int error) { - switch(error) { + switch (error) { case CL_SUCCESS: return "CL_SUCCESS"; case CL_DEVICE_NOT_FOUND: -- GitLab