Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thinks committed Oct 22, 2024
1 parent fa878d8 commit 13085dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/tph_poisson_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ static void TestInvalidArgs()
[&]() {
tph_poisson_args args = valid_args;
tph_poisson_allocator incomplete_alloc = {};
incomplete_alloc.free = [](void* ptr, ptrdiff_t /*size*/, void * /*ctx*/) {
incomplete_alloc.free = [](void *ptr, ptrdiff_t /*size*/, void * /*ctx*/) {
return std::free(ptr);

Check warning on line 291 in test/src/tph_poisson_test.cpp

View check run for this annotation

Codecov / codecov/patch

test/src/tph_poisson_test.cpp#L291

Added line #L291 was not covered by tests
};
REQUIRE(incomplete_alloc.malloc == nullptr);
Expand Down

0 comments on commit 13085dc

Please sign in to comment.