summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 14:28:21 +0100
committerGitHub <noreply@github.com>2021-03-17 14:28:21 +0100
commitadc3b3184957de087fb84f045a7e4ba7287e1270 (patch)
tree90611e27c86a77ea8ea4bcabdf9f39819e6cbdc5 /TAO/tests/Portable_Interceptors
parent5f9ccb42bc00bd6e0eee5907f5046c10ea4404eb (diff)
parent104d9f8a30c479fe661883b295f120ab035645d9 (diff)
downloadATCD-adc3b3184957de087fb84f045a7e4ba7287e1270.tar.gz
Merge pull request #1457 from jwillemsen/jwi-redundantvoid
Removed redundant void
Diffstat (limited to 'TAO/tests/Portable_Interceptors')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp2
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Echo_Handler.h2
-rw-r--r--TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp4
-rw-r--r--TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h4
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.h2
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.h2
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Client_Task.h2
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Server_Task.h2
8 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
index 571249c85f8..f42f292c474 100644
--- a/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
+++ b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
@@ -32,7 +32,7 @@ Echo_Handler::shutdown_excep (::Messaging::ExceptionHolder *)
}
CORBA::ULong
-Echo_Handler::replies (void) const
+Echo_Handler::replies () const
{
return this->replies_;
}
diff --git a/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.h b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.h
index 4a0aca20158..da7f3446d66 100644
--- a/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.h
+++ b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.h
@@ -20,7 +20,7 @@ public:
virtual void shutdown(void);
virtual void shutdown_excep(::Messaging::ExceptionHolder * h);
- CORBA::ULong replies (void) const;
+ CORBA::ULong replies () const;
private:
CORBA::ULong replies_;
diff --git a/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp b/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp
index b6ec4f91abd..696af631cbd 100644
--- a/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp
+++ b/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp
@@ -10,13 +10,13 @@ Client_Request_Interceptor::Client_Request_Interceptor (void)
}
CORBA::ULong
-Client_Request_Interceptor::receive_exception_count (void) const
+Client_Request_Interceptor::receive_exception_count () const
{
return this->receive_exception_count_;
}
CORBA::ULong
-Client_Request_Interceptor::request_count (void) const
+Client_Request_Interceptor::request_count () const
{
return this->request_count_;
}
diff --git a/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h b/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h
index 8b106735713..143f7b9f0c6 100644
--- a/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h
+++ b/TAO/tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h
@@ -61,9 +61,9 @@ public:
PortableInterceptor::ClientRequestInfo_ptr ri);
//@}
- CORBA::ULong request_count (void) const;
+ CORBA::ULong request_count () const;
- CORBA::ULong receive_exception_count (void) const;
+ CORBA::ULong receive_exception_count () const;
private:
/// The number of requests intercepted by this interceptor.
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.h b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.h
index 9dc0cb89b6e..617fef26373 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.h
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.h
@@ -27,7 +27,7 @@ public:
void run_test (Test_Interceptors::Visual_ptr server);
/// The status of the svc loop
- int status (void) const;
+ int status () const;
private:
const ACE_TCHAR *input_;
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.h b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.h
index 8306c7f8a9a..ce62b3f44da 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.h
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.h
@@ -30,7 +30,7 @@ public:
int svc (void);
/// The status of the svc loop
- int status (void) const;
+ int status () const;
private:
/// Output file for IOR
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Client_Task.h b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Client_Task.h
index ff9d33073a1..6490e7cd1c6 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Client_Task.h
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Client_Task.h
@@ -27,7 +27,7 @@ public:
void run_test (Test_Interceptors::Visual_ptr server);
/// The status of the svc loop
- int status (void) const;
+ int status () const;
private:
const ACE_TCHAR *input_;
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Server_Task.h b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Server_Task.h
index cc5cd7a8eb6..9915f4e1969 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Server_Task.h
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Remote/Server_Task.h
@@ -30,7 +30,7 @@ public:
int svc (void);
/// The status of the svc loop
- int status (void) const;
+ int status () const;
private:
/// Output file for IOR