From c34ad3bbf908b2fc5a092101fe97ad7009a85012 Mon Sep 17 00:00:00 2001 From: ruslan-ilesik Date: Thu, 5 Oct 2023 16:11:45 -0400 Subject: [PATCH] do not use github mobile to fix coding style --- src/dpp/utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dpp/utility.cpp b/src/dpp/utility.cpp index a650b64d3d..77351d9ef2 100644 --- a/src/dpp/utility.cpp +++ b/src/dpp/utility.cpp @@ -316,7 +316,7 @@ namespace dpp { } if (t < 1.0 / 6.0) { return p + (q - p) * 6.0 * t; - } else if (t < 0.5) { + } else if (t < 0.5) { return q; } else if (t < 2.0 / 3.0) { return p + (q - p) * (2.0 / 3.0 - t) * 6.0;