Skip to content

Commit

Permalink
[Change] Remove std::forward<T>() call because MSVC2022 cannot take…
Browse files Browse the repository at this point in the history
… it.
  • Loading branch information
buck-yeh committed Sep 24, 2024
1 parent aec8e6d commit 86034af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/bux/Logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ C_EntryLog::C_EntryLog(std::string_view scopeName, T_Fmt &&fmtStr, T_Args&&...ar
{
m_Id = getId();
const auto fmtfmt = std::format("@{}@{}({}) {{{{\n", *m_Id, scopeName, fmtStr);
stamp(u,LL_VERBOSE) << std::vformat(fmtfmt, std::make_format_args(std::forward<T_Args>(args)...));
stamp(u,LL_VERBOSE) << std::vformat(fmtfmt, std::make_format_args(args...));
}
deeper();
}
Expand Down

0 comments on commit 86034af

Please sign in to comment.