summaryrefslogtreecommitdiff
path: root/ACE/ace/Time_Value.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 15:20:51 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 15:20:51 +0100
commit703b0e6522f91e7de7b09b03d68b28623fd0dd17 (patch)
treef63091592635215d03b258aab058e3169b5683ad /ACE/ace/Time_Value.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-703b0e6522f91e7de7b09b03d68b28623fd0dd17.tar.gz
Remove redundant void from the core ACE library files
Diffstat (limited to 'ACE/ace/Time_Value.cpp')
-rw-r--r--ACE/ace/Time_Value.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Time_Value.cpp b/ACE/ace/Time_Value.cpp
index 19dfcff8c72..24b8ee58efe 100644
--- a/ACE/ace/Time_Value.cpp
+++ b/ACE/ace/Time_Value.cpp
@@ -54,7 +54,7 @@ ACE_Time_Value::operator ++ (int)
}
ACE_Time_Value &
-ACE_Time_Value::operator ++ (void)
+ACE_Time_Value::operator ++ ()
{
// ACE_OS_TRACE ("ACE_Time_Value::operator ++ (void)");
this->usec (this->usec () + 1);
@@ -74,7 +74,7 @@ ACE_Time_Value::operator -- (int)
}
ACE_Time_Value &
-ACE_Time_Value::operator -- (void)
+ACE_Time_Value::operator -- ()
{
// ACE_OS_TRACE ("ACE_Time_Value::operator -- (void)");
this->usec (this->usec () - 1);
@@ -166,7 +166,7 @@ ACE_Time_Value::duplicate () const
}
void
-ACE_Time_Value::dump (void) const
+ACE_Time_Value::dump () const
{
}