Skip to content

Commit

Permalink
Revert "[dataflow][nfc] Fix u8 string usage with c++20 (#84291)"
Browse files Browse the repository at this point in the history
This reverts commit 6e79f77.
  • Loading branch information
martinboehme committed Mar 7, 2024
1 parent 55304d0 commit c4eae28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/lib/Analysis/FlowSensitive/HTMLLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ class HTMLLogger : public Logger {
for (unsigned I = 0; I < CFG.getNumBlockIDs(); ++I) {
std::string Name = blockID(I);
// Rightwards arrow, vertical line
char ConvergenceMarker[] = "\\n\u2192\u007c";
char ConvergenceMarker[] = u8"\\n\u2192\u007c";
if (BlockConverged[I])
Name += ConvergenceMarker;
GraphS << " " << blockID(I) << " [id=" << blockID(I) << " label=\""
Expand Down

0 comments on commit c4eae28

Please sign in to comment.