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 55304d0 commit c4eae28Copy full SHA for c4eae28
clang/lib/Analysis/FlowSensitive/HTMLLogger.cpp
@@ -500,7 +500,7 @@ class HTMLLogger : public Logger {
500
for (unsigned I = 0; I < CFG.getNumBlockIDs(); ++I) {
501
std::string Name = blockID(I);
502
// Rightwards arrow, vertical line
503
- char ConvergenceMarker[] = "\\n\u2192\u007c";
+ char ConvergenceMarker[] = u8"\\n\u2192\u007c";
504
if (BlockConverged[I])
505
Name += ConvergenceMarker;
506
GraphS << " " << blockID(I) << " [id=" << blockID(I) << " label=\""
0 commit comments