We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As seen in scylladb/scylladb#10950, this code
throw std::logic_error(format("rpc stream id {} not found", id).c_str());
results in
std::logic_error (rpc stream id true not found)
message. Apparently compiler picks up implicit connection_id::operator bool() const to format :D
connection_id::operator bool() const
The text was updated successfully, but these errors were encountered:
fmtlib/fmt#2624
Sorry, something went wrong.
fmtlib/fmt#1766
f1d0b25
No branches or pull requests
As seen in scylladb/scylladb#10950, this code
results in
message. Apparently compiler picks up implicit
connection_id::operator bool() const
to format :DThe text was updated successfully, but these errors were encountered: