Skip to content

Commit 12a55a9

Browse files
committed
disable lint
1 parent 93f502b commit 12a55a9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ jobs:
2020
with: { python-version: "3.12" }
2121

2222
- name: Install codespell
23+
if: never() # always()
2324
run: pip3 install codespell
2425

2526
- name: Lint
2627
run: cmake -D FORMAT_COMMAND=clang-format-14 -P cmake/lint.cmake
2728

2829
- name: Spell check
29-
if: always()
30+
if: never() # always()
3031
run: cmake -P cmake/spell.cmake
3132

3233
coverage:

include/thinks/tph_poisson.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,11 +1088,11 @@ const tph_poisson_real *tph_poisson_get_samples(tph_poisson_sampling *sampling)
10881088
#undef TPH_POISSON_MALLOC
10891089
#undef TPH_POISSON_FREE
10901090

1091-
// #undef tph_poisson_vec_invariants
1092-
// #undef tph_poisson_vec_size
1093-
// #undef tph_poisson_vec_append
1094-
// #undef tph_poisson_vec_erase_unordered
1095-
// #undef tph_poisson_vec_shrink_to_fit
1091+
#undef tph_poisson_vec_invariants
1092+
#undef tph_poisson_vec_size
1093+
#undef tph_poisson_vec_append
1094+
#undef tph_poisson_vec_erase_unordered
1095+
#undef tph_poisson_vec_shrink_to_fit
10961096

10971097
#endif// TPH_POISSON_IMPLEMENTATION
10981098

0 commit comments

Comments
 (0)