mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-05 03:29:46 +08:00
style: remove unused params of main (#2948)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -136,10 +136,8 @@ static void test3() {
|
||||
/**
|
||||
* Main function
|
||||
*
|
||||
* @param argc commandline argument count (ignored)
|
||||
* @param argv commandline array of arguments (ignored)
|
||||
*/
|
||||
int main(int argc, char **argv) {
|
||||
int main() {
|
||||
test1();
|
||||
test2();
|
||||
test3();
|
||||
|
||||
Reference in New Issue
Block a user