Skip to content

Commit

Permalink
CXX compiler should be clang++ instead of clang
Browse files Browse the repository at this point in the history
  • Loading branch information
guanshaoheng committed Oct 21, 2024
1 parent 6f6c565 commit e625d1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if [ `uname` == Darwin ]; then
meson setup --buildtype=release --unity on builddir
else
env CC=clang CXX=clang meson setup --buildtype=release --unity on builddir
env CC=clang CXX=clang++ meson setup --buildtype=release --unity on builddir
fi
- name: meson_compile
Expand Down
2 changes: 1 addition & 1 deletion PretextGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ graph_f
// add a dictionary to store the data type
unsigned int data_type(0);
std::unordered_map<std::string, int> data_type_dic{ // use this data_type
{"default", 0, },
{"default", 0 },
{"repeat_density", 1}, // as this is counted in every single bin, so we need to normalise this within the bin
{"gap", 2}, //
};
Expand Down

0 comments on commit e625d1a

Please sign in to comment.