summaryrefslogtreecommitdiff
path: root/ACE/tests/ARGV_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
commit9027b24610848c0eb0d768b60b132ce9e09dee7d (patch)
treef2b313d8110861616f330776f20f1df0c348cc0b /ACE/tests/ARGV_Test.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/tests/ARGV_Test.cpp')
-rw-r--r--ACE/tests/ARGV_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/ARGV_Test.cpp b/ACE/tests/ARGV_Test.cpp
index 59d72dab714..4f6f90e25cf 100644
--- a/ACE/tests/ARGV_Test.cpp
+++ b/ACE/tests/ARGV_Test.cpp
@@ -64,7 +64,7 @@ test_simple_argv (ACE_TCHAR *argv[])
}
static int
-test_argv_type_converter (void)
+test_argv_type_converter ()
{
char *argv[20];
argv[0] = ACE_OS::strdup ("one");
@@ -108,7 +108,7 @@ test_argv_type_converter (void)
}
static int
-test_argv_type_converter2 (void)
+test_argv_type_converter2 ()
{
ACE_TCHAR *argv[20];
argv[0] = ACE_OS::strdup (ACE_TEXT ("one"));
@@ -145,7 +145,7 @@ test_argv_type_converter2 (void)
}
static int
-test_argv_buf (void)
+test_argv_buf ()
{
pid_t parent_pid = ACE_OS::getpid ();
@@ -178,7 +178,7 @@ test_argv_buf (void)
}
static int
-test_argv_quotes (void)
+test_argv_quotes ()
{
const ACE_TCHAR *argv_const[] = { ACE_TEXT ("first without quotes"),
ACE_TEXT ("'second in single quotes'"),