WIP (tests)

This commit is contained in:
Ronan Collobert
2025-10-31 09:39:38 -07:00
parent 1bac0db7e3
commit 5baa361779
4 changed files with 7 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ TEST_CASE("test export basic functions") {
}
TEST_CASE("test export function with no inputs") {
auto fun = [](std::vector<array> x) -> std::vector<array> {
auto fun = [](std::vector<array> /* x */) -> std::vector<array> {
return {zeros({2, 2})};
};