Skip to content

Commit 833cacb

Browse files
committed
fix CI ubuntu build
1 parent 89f4e93 commit 833cacb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/slick_logger/logger.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ inline void Logger::enqueue_argument(LogArgument& arg, T&& value) {
15621562
}
15631563
else if constexpr (std::is_pointer_v<DecayedT>) {
15641564
arg.type = ArgType::PTR;
1565-
arg.value.ptr = static_cast<const void*>(value);
1565+
arg.value.ptr = static_cast<void*>(value);
15661566
}
15671567
else {
15681568
// custom type - convert to string

src/logger.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ inline void Logger::enqueue_argument(LogArgument& arg, T&& value) {
15601560
}
15611561
else if constexpr (std::is_pointer_v<DecayedT>) {
15621562
arg.type = ArgType::PTR;
1563-
arg.value.ptr = static_cast<const void*>(value);
1563+
arg.value.ptr = static_cast<void*>(value);
15641564
}
15651565
else {
15661566
// custom type - convert to string

0 commit comments

Comments
 (0)