From d834cd03ed8ea7b983ce253a7c8aaa1f0af220be Mon Sep 17 00:00:00 2001 From: willGraham01 <1willgraham@gmail.com> Date: Tue, 6 Jun 2023 12:18:37 +0100 Subject: [PATCH] Linting barf --- .../simulation_manager/execute_detector_subfunctions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdms/src/simulation_manager/execute_detector_subfunctions.cpp b/tdms/src/simulation_manager/execute_detector_subfunctions.cpp index 8c555bb1..29ae73ae 100644 --- a/tdms/src/simulation_manager/execute_detector_subfunctions.cpp +++ b/tdms/src/simulation_manager/execute_detector_subfunctions.cpp @@ -91,9 +91,9 @@ void SimulationManager::compute_detector_functions(unsigned int tind, * because OpenMP 2.5 (the only version the VSCode compiler supports) does not * permit unsigned integers in parallel for loops. * - * Conversely, OpenMP on Mac and Ubuntu does support this, so the code is simpler - * and safer. When VisualStudio eventually update their OpenMP spec we can - * probably remove this. + * Conversely, OpenMP on Mac and Ubuntu does support this, so the code is + * simpler and safer. When VisualStudio eventually update their OpenMP spec we + * can probably remove this. */ #if (_OPENMP < 200805) long long int loop_upper_index = inputs.f_ex_vec.size();