Fix the suspicious string literal error in GPU status description
authorArtem Zhmurov <zhmurov@gmail.com>
Wed, 15 Jul 2020 16:05:08 +0000 (16:05 +0000)
committerRoland Schulz <roland.schulz@intel.com>
Wed, 15 Jul 2020 16:05:08 +0000 (16:05 +0000)
Fixes clang-tidy error, introduced by broken string in
d2ba568ac6d5d3b6a1ef996618a1367307872d03

src/gromacs/hardware/gpu_hw_info.h

index a48da259fbd2fbef75f30130b5ac973cb1212a52..28b928066e6be278884866e1ed68b37a16b40317 100644 (file)
@@ -75,7 +75,7 @@ enum class DeviceStatus : int
 static const gmx::EnumerationArray<DeviceStatus, const char*> c_deviceStateString = {
     "compatible", "nonexistent", "incompatible",
     // clang-format off
-    "incompatible (please recompile with correct GMX" "_OPENCL_NB_CLUSTER_SIZE of 4)",
+    "incompatible (please recompile with correct GMX _OPENCL_NB_CLUSTER_SIZE of 4)",
     // clang-format on
     "non-functional", "unavailable"
 };