Skip to content

Commit

Permalink
make msvc happy
Browse files Browse the repository at this point in the history
  • Loading branch information
leissa committed Mar 13, 2024
1 parent eadc3e1 commit 035df75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thorin/dot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class Dot {
std::string label(const Def* def) const {
if (auto lit = Lit::isa(def)) return std::to_string(*lit);
switch (def->node()) {
case Node::Axiom: return std::string(def->sym());
case Node::Axiom: return def->sym().str();
case Node::Pi: return "Π";
case Node::Lam: return "λ";
case Node::App: return "";
Expand Down

0 comments on commit 035df75

Please sign in to comment.