Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 9d3a84f

Browse files
authored
💚 Fix CI upgrade to libhal-cmake-util/3.0.0 (#708)
1 parent 4da8b69 commit 9d3a84f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def validate(self):
6060

6161
def build_requirements(self):
6262
self.tool_requires("cmake/3.27.1")
63-
self.tool_requires("libhal-cmake-util/1.2.0")
63+
self.tool_requires("libhal-cmake-util/3.0.0")
6464
self.test_requires("boost-ext-ut/1.1.9")
6565

6666
def requirements(self):

tests/helpers.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#include "helpers.hpp"
22

3-
bool compare_floats(float p_first, float p_second, float p_error_margin)
3+
bool compare_floats(float p_first, // NOLINT
4+
float p_second, // NOLINT
5+
float p_error_margin) // NOLINT
46
{
57
float difference = std::abs(p_first - p_second);
68
return difference < p_error_margin;

0 commit comments

Comments
 (0)