Skip to content

Commit

Permalink
fix: logger error
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Oct 21, 2023
1 parent 723f612 commit 9bde6b2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions source/include/Utils/Logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,6 @@ class MAA_UTILS_API Logger
else if constexpr (std::same_as<std::wstring, std::decay_t<T>>) {
return from_u16(std::forward<T>(value));
}
else if constexpr (std::is_constructible_v<std::string, T>) {
return std::string(std::forward<T>(value));
}
else if constexpr (has_output_operator<T>) {
std::stringstream ss;
ss << std::forward<T>(value);
Expand Down

0 comments on commit 9bde6b2

Please sign in to comment.