Skip to content

Commit

Permalink
msvc + doxygen fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leissa committed Mar 13, 2024
1 parent 7fd43fa commit eadc3e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
with:
submodules: recursive

- name: Install newest g++, graphviz, texlive
- name: Install newest g++, gdb, graphviz, texlive
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-13 graphviz texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
sudo apt-get install g++-13 gdb graphviz texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
export CXX=g++-13
Expand Down
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 std::string(def->sym());
case Node::Pi: return "Π";
case Node::Lam: return "λ";
case Node::App: return "";
Expand Down

0 comments on commit eadc3e1

Please sign in to comment.