Skip to content

Commit 3118952

Browse files
authored
Add Dll to LogChecker (#3)
* Add Dll to LogChecker Signed-off-by: jparisu <javierparis@eprosima.com> * Fix typo in colcon meta CI Signed-off-by: jparisu <javierparis@eprosima.com> Signed-off-by: jparisu <javierparis@eprosima.com>
1 parent f0beb42 commit 3118952

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/coverage_colcon.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"names":
33
{
4-
"cpp_util":
4+
"cpp_utils":
55
{
66
"cmake-args":
77
[

cpp_utils/include/cpp_utils/testing/LogChecker.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ class LogChecker
3131
{
3232
public:
3333

34-
LogChecker(
34+
CPP_UTILS_DllAPI LogChecker(
3535
utils::Log::Kind threshold = utils::Log::Kind::Warning,
3636
uint32_t expected_severe_logs = 0,
3737
uint32_t max_severe_logs = 0);
3838

39-
~LogChecker();
39+
CPP_UTILS_DllAPI ~LogChecker();
4040

41-
bool check_valid();
41+
CPP_UTILS_DllAPI bool check_valid();
4242

4343
protected:
4444

0 commit comments

Comments
 (0)