style: remove unused params of main (#2948)

Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
Piotr Idzik
2025-08-15 05:52:28 +02:00
committed by GitHub
parent d4962c3032
commit fb27d4d304
30 changed files with 32 additions and 70 deletions

View File

@@ -155,7 +155,7 @@ void test_function(const float *test_data, const int number_of_samples) {
}
/** Main function */
int main(int argc, char **argv) {
int main() {
const float test_data1[] = {3, 4, 5, -1.4, -3.6, 1.9, 1.};
test_function(test_data1, sizeof(test_data1) / sizeof(test_data1[0]));