diff options
Diffstat (limited to 'src/buildtool/common/remote/client_common.hpp')
-rw-r--r-- | src/buildtool/common/remote/client_common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/common/remote/client_common.hpp b/src/buildtool/common/remote/client_common.hpp index 58c19458..aecbf02f 100644 --- a/src/buildtool/common/remote/client_common.hpp +++ b/src/buildtool/common/remote/client_common.hpp @@ -72,11 +72,11 @@ s.message()); } -template <typename T_Status> +template <typename TStatus> [[maybe_unused]] static inline void LogStatus( Logger const* logger, LogLevel level, - T_Status const& s, + TStatus const& s, std::optional<std::string> const& prefix = std::nullopt) noexcept { auto msg = [&s, &prefix]() { return StatusString(s, prefix); }; if (logger == nullptr) { |