We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88a1ceb commit 6e512e9Copy full SHA for 6e512e9
src/lib/Support/Debug.hpp
@@ -28,7 +28,7 @@ struct std::formatter<clang::mrdocs::SymbolID> : std::formatter<std::string> {
28
template <class FmtContext>
29
std::format_context::iterator format(clang::mrdocs::SymbolID const &s,
30
FmtContext &ctx) const {
31
- std::string str = s ? "<invalid SymbolID>" : clang::mrdocs::toBase64(s);
+ std::string str = s ? clang::mrdocs::toBase64(s) : "<invalid SymbolID>";
32
return std::formatter<std::string>::format(std::move(str), ctx);
33
}
34
};
0 commit comments