mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[wpiutil] Upgrade to fmtlib 8.0.0 (#3457)
This commit is contained in:
@@ -20,7 +20,7 @@ void Logger::LogV(unsigned int level, const char* file, unsigned int line,
|
||||
return;
|
||||
}
|
||||
fmt::memory_buffer out;
|
||||
fmt::vformat_to(out, format, args);
|
||||
fmt::vformat_to(fmt::appender{out}, format, args);
|
||||
out.push_back('\0');
|
||||
m_func(level, file, line, out.data());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user