mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-10 05:58:22 +08:00
style: remove unused params of main (#2948)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -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]));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user