You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to fix that in the PR #2072 and with the SFINAE check for the enum-specific write function I ended up with a failed format-test because of a strange MSVC compiler error, which I cannot properly debug.
So feel free to create a new PR to fix that std::byte formatting bug with some MSVC workaround.
The text was updated successfully, but these errors were encountered:
Right now formatting of
std::byte
using compile-time API like so:ends up with compilation error, proof on Compiler Explorer. Because there are 2
write
functions which satisfy for the passed typestd::byte
:fmt/include/fmt/format.h
Lines 2114 to 2120 in 5a37e18
fmt/include/fmt/format.h
Lines 2150 to 2162 in 5a37e18
I tried to fix that in the PR #2072 and with the SFINAE check for the
enum
-specificwrite
function I ended up with a failedformat-test
because of a strange MSVC compiler error, which I cannot properly debug.So feel free to create a new PR to fix that
std::byte
formatting bug with some MSVC workaround.The text was updated successfully, but these errors were encountered: