diff options
-rw-r--r-- | test/array_test.cpp | 2 | ||||
-rw-r--r-- | test/build_test.cpp | 2 | ||||
-rw-r--r-- | test/double_buffer_test.cpp | 2 | ||||
-rw-r--r-- | test/maid_test.cpp | 2 | ||||
-rw-r--r-- | test/socket_test.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/test/array_test.cpp b/test/array_test.cpp index a1a4132..e401fc8 100644 --- a/test/array_test.cpp +++ b/test/array_test.cpp @@ -19,7 +19,7 @@ #include <cstdio> int -main(int argc, char** argv) +main() { Raul::Array<int> array1(32, 2); diff --git a/test/build_test.cpp b/test/build_test.cpp index 314862c..9de137c 100644 --- a/test/build_test.cpp +++ b/test/build_test.cpp @@ -30,7 +30,7 @@ #include "raul/TimeStamp.hpp" int -main(int argc, char** argv) +main() { return 0; } diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp index 5148f88..1717d0e 100644 --- a/test/double_buffer_test.cpp +++ b/test/double_buffer_test.cpp @@ -17,7 +17,7 @@ #include "raul/DoubleBuffer.hpp" int -main(int argc, char** argv) +main() { Raul::DoubleBuffer<int> db(0); diff --git a/test/maid_test.cpp b/test/maid_test.cpp index a692c1d..ba4086a 100644 --- a/test/maid_test.cpp +++ b/test/maid_test.cpp @@ -119,7 +119,7 @@ test() } int -main(int argc, char** argv) +main() { assert(n_junk == 0); test(); diff --git a/test/socket_test.cpp b/test/socket_test.cpp index 1a5c80f..9208dc3 100644 --- a/test/socket_test.cpp +++ b/test/socket_test.cpp @@ -28,7 +28,7 @@ #include <utility> int -main(int argc, char** argv) +main() { using Socket = Raul::Socket; |