Skip to content

Commit bd7e210

Browse files
committed
remove std::forward addition
1 parent 87607ab commit bd7e210

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cpp/log.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ void info_to(std::string_view dest, std::format_string<Args...> fmt,
336336
template <typename... Args>
337337
void debug(std::format_string<Args...> fmt, Args &&...args) {
338338
fastly::sys::log::f_log_log(fastly::sys::log::LogLevel::Debug,
339-
std::format(fmt, std::forward<Args>(args)...));
339+
std::format(fmt, args...);
340340
}
341341

342342
/// Send a Debug-level message to a specified configured endpoint.

0 commit comments

Comments
 (0)