Skip to content

Commit

Permalink
Hotfix reinterpret HTML (#7912)
Browse files Browse the repository at this point in the history
Hotfix reinterpret
  • Loading branch information
mcourteaux committed Oct 22, 2023
1 parent 739053d commit d023065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StmtToHTML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1425,9 +1425,9 @@ class HTMLCodePrinter : public IRVisitor {
std::string type_str = type_to_string(op->type);
print_opening_tag("span", "Reinterpret");
print_opening_tag("span", "matched Symbol", type_str);
print_text("reinterpret<");
print_text("reinterpret&lt;");
print_type(op->type);
print_text(">");
print_text("&gt;");
print_closing_tag("span");
print_html_element("span", "matched", "(", type_str);
print(op->value);
Expand Down

0 comments on commit d023065

Please sign in to comment.