summaryrefslogtreecommitdiff
path: root/TAO/tests/Alt_Mapping
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /TAO/tests/Alt_Mapping
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'TAO/tests/Alt_Mapping')
-rw-r--r--TAO/tests/Alt_Mapping/options.cpp6
-rw-r--r--TAO/tests/Alt_Mapping/options.h6
-rw-r--r--TAO/tests/Alt_Mapping/ub_string.cpp2
-rw-r--r--TAO/tests/Alt_Mapping/ub_string.h2
-rw-r--r--TAO/tests/Alt_Mapping/ub_struct_seq.cpp2
-rw-r--r--TAO/tests/Alt_Mapping/ub_struct_seq.h2
6 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/Alt_Mapping/options.cpp b/TAO/tests/Alt_Mapping/options.cpp
index fc146142491..923d6ed5fa7 100644
--- a/TAO/tests/Alt_Mapping/options.cpp
+++ b/TAO/tests/Alt_Mapping/options.cpp
@@ -127,7 +127,7 @@ Options::read_ior (ACE_TCHAR *filename)
}
char const *
-Options::param_test_ior (void) const
+Options::param_test_ior () const
{
return this->ior_.in ();
}
@@ -151,13 +151,13 @@ Options::loop_count (void)
}
CORBA::Boolean
-Options::debug (void) const
+Options::debug () const
{
return this->debug_;
}
CORBA::Boolean
-Options::shutdown (void) const
+Options::shutdown () const
{
return this->shutdown_;
}
diff --git a/TAO/tests/Alt_Mapping/options.h b/TAO/tests/Alt_Mapping/options.h
index 67596279459..8a6796c3cef 100644
--- a/TAO/tests/Alt_Mapping/options.h
+++ b/TAO/tests/Alt_Mapping/options.h
@@ -49,7 +49,7 @@ public:
int parse_args (int argc, ACE_TCHAR **argv);
/// return the IOR for the servant
- char const * param_test_ior (void) const;
+ char const * param_test_ior () const;
/// what test to run
TEST_TYPE test_type (void);
@@ -61,10 +61,10 @@ public:
CORBA::ULong loop_count (void);
/// whether debug option is on or not
- CORBA::Boolean debug (void) const;
+ CORBA::Boolean debug () const;
/// If we should request the server to shutdown.
- CORBA::Boolean shutdown (void) const;
+ CORBA::Boolean shutdown () const;
private:
/// Function to read the servant IOR from a file.
diff --git a/TAO/tests/Alt_Mapping/ub_string.cpp b/TAO/tests/Alt_Mapping/ub_string.cpp
index fc24fb6afd1..a1cb328c8a5 100644
--- a/TAO/tests/Alt_Mapping/ub_string.cpp
+++ b/TAO/tests/Alt_Mapping/ub_string.cpp
@@ -29,7 +29,7 @@ Test_Unbounded_String::~Test_Unbounded_String (void)
}
const char *
-Test_Unbounded_String::opname (void) const
+Test_Unbounded_String::opname () const
{
return this->opname_;
}
diff --git a/TAO/tests/Alt_Mapping/ub_string.h b/TAO/tests/Alt_Mapping/ub_string.h
index f3d12300da0..7326aa8f5de 100644
--- a/TAO/tests/Alt_Mapping/ub_string.h
+++ b/TAO/tests/Alt_Mapping/ub_string.h
@@ -31,7 +31,7 @@ public:
int run_sii_test (Alt_Mapping_ptr objref);
/// return operation name
- const char *opname (void) const;
+ const char *opname () const;
/// set values for parameters
int init_parameters (Alt_Mapping_ptr objref);
diff --git a/TAO/tests/Alt_Mapping/ub_struct_seq.cpp b/TAO/tests/Alt_Mapping/ub_struct_seq.cpp
index f282ddcd698..95673f39d4b 100644
--- a/TAO/tests/Alt_Mapping/ub_struct_seq.cpp
+++ b/TAO/tests/Alt_Mapping/ub_struct_seq.cpp
@@ -33,7 +33,7 @@ Test_Unbounded_Struct_Sequence::~Test_Unbounded_Struct_Sequence (
}
const char *
-Test_Unbounded_Struct_Sequence::opname (void) const
+Test_Unbounded_Struct_Sequence::opname () const
{
return this->opname_;
}
diff --git a/TAO/tests/Alt_Mapping/ub_struct_seq.h b/TAO/tests/Alt_Mapping/ub_struct_seq.h
index d4bc70446ce..973f9a0f186 100644
--- a/TAO/tests/Alt_Mapping/ub_struct_seq.h
+++ b/TAO/tests/Alt_Mapping/ub_struct_seq.h
@@ -32,7 +32,7 @@ public:
int run_sii_test (Alt_Mapping_ptr objref);
/// return operation name
- const char *opname (void) const;
+ const char *opname () const;
/// set values for parameters
int init_parameters (Alt_Mapping_ptr objref);