summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Callback_Quoter')
-rw-r--r--TAO/examples/Callback_Quoter/Consumer_Handler.cpp2
-rw-r--r--TAO/examples/Callback_Quoter/Consumer_Handler.h2
-rw-r--r--TAO/examples/Callback_Quoter/Supplier_i.cpp2
-rw-r--r--TAO/examples/Callback_Quoter/Supplier_i.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/Callback_Quoter/Consumer_Handler.cpp b/TAO/examples/Callback_Quoter/Consumer_Handler.cpp
index e82cacb225d..6d93850e49f 100644
--- a/TAO/examples/Callback_Quoter/Consumer_Handler.cpp
+++ b/TAO/examples/Callback_Quoter/Consumer_Handler.cpp
@@ -341,7 +341,7 @@ Consumer_Handler::run (void)
}
ACE_Reactor *
-Consumer_Handler::reactor_used (void) const
+Consumer_Handler::reactor_used () const
{
return this->orb_->orb_core ()->reactor ();
}
diff --git a/TAO/examples/Callback_Quoter/Consumer_Handler.h b/TAO/examples/Callback_Quoter/Consumer_Handler.h
index c21f2fbbb44..de5d729bc63 100644
--- a/TAO/examples/Callback_Quoter/Consumer_Handler.h
+++ b/TAO/examples/Callback_Quoter/Consumer_Handler.h
@@ -72,7 +72,7 @@ public:
Callback_Quoter::Consumer_var consumer_var_;
/// This method gives the reactor pointer.
- ACE_Reactor* reactor_used (void) const;
+ ACE_Reactor* reactor_used () const;
/// Flag which notes whether the consumer has got registered with the
/// Notifier-server.
diff --git a/TAO/examples/Callback_Quoter/Supplier_i.cpp b/TAO/examples/Callback_Quoter/Supplier_i.cpp
index fb6ed593ca4..7e48e7d3af4 100644
--- a/TAO/examples/Callback_Quoter/Supplier_i.cpp
+++ b/TAO/examples/Callback_Quoter/Supplier_i.cpp
@@ -299,7 +299,7 @@ Supplier::init (int argc, ACE_TCHAR **argv)
}
ACE_Reactor*
-Supplier::reactor_used (void) const
+Supplier::reactor_used () const
{
return ACE_Reactor::instance ();
}
diff --git a/TAO/examples/Callback_Quoter/Supplier_i.h b/TAO/examples/Callback_Quoter/Supplier_i.h
index 123a323661b..3af4b7fefe1 100644
--- a/TAO/examples/Callback_Quoter/Supplier_i.h
+++ b/TAO/examples/Callback_Quoter/Supplier_i.h
@@ -71,7 +71,7 @@ private:
int via_naming_service(void);
/// returns the TAO instance of the singleton Reactor.
- ACE_Reactor *reactor_used (void) const;
+ ACE_Reactor *reactor_used () const;
/// This method used for getting stock information from a file.
int read_file (ACE_TCHAR *filename);