summaryrefslogtreecommitdiff
path: root/ACE/ace/DEV.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/DEV.cpp')
-rw-r--r--ACE/ace/DEV.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/DEV.cpp b/ACE/ace/DEV.cpp
index 08a7e581f59..ca87efd7056 100644
--- a/ACE/ace/DEV.cpp
+++ b/ACE/ace/DEV.cpp
@@ -17,7 +17,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE(ACE_DEV)
void
-ACE_DEV::dump (void) const
+ACE_DEV::dump () const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_DEV::dump");
@@ -26,7 +26,7 @@ ACE_DEV::dump (void) const
// This is the do-nothing constructor.
-ACE_DEV::ACE_DEV (void)
+ACE_DEV::ACE_DEV ()
{
ACE_TRACE ("ACE_DEV::ACE_DEV");
}
@@ -34,7 +34,7 @@ ACE_DEV::ACE_DEV (void)
// Close the device
int
-ACE_DEV::close (void)
+ACE_DEV::close ()
{
ACE_TRACE ("ACE_DEV::close");
int result = ACE_OS::close (this->get_handle ());