mirror of
https://github.com/hyprwm/Hyprland
synced 2026-05-08 15:18:03 +02:00
LOGM: clang-tidy fix
This commit is contained in:
parent
c8b5023bb0
commit
eee66c8c40
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
|||
} else if (level == Log::DEBUG || level == Log::INFO || level == Log::TRACE) { \
|
||||
oss << "[" << EXTRACT_CLASS_NAME() << "] "; \
|
||||
} \
|
||||
if constexpr (std::tuple_size<decltype(std::make_tuple(__VA_ARGS__))>::value == 1 && std::is_same_v<decltype(__VA_ARGS__), std::string>) { \
|
||||
if constexpr (std::tuple_size_v<decltype(std::make_tuple(__VA_ARGS__))> == 1 && std::is_same_v<decltype(__VA_ARGS__), std::string>) { \
|
||||
oss << __VA_ARGS__; \
|
||||
Log::logger->log(level, oss.str()); \
|
||||
} else { \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue