summaryrefslogtreecommitdiff
path: root/ACE/ace/Time_Value_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Time_Value_T.h')
-rw-r--r--ACE/ace/Time_Value_T.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Time_Value_T.h b/ACE/ace/Time_Value_T.h
index 3cbdf84e480..c6f9a55b87a 100644
--- a/ACE/ace/Time_Value_T.h
+++ b/ACE/ace/Time_Value_T.h
@@ -38,7 +38,7 @@ public:
typedef TIME_POLICY time_policy_t;
/// Default Constructor.
- ACE_Time_Value_T (void) {}
+ ACE_Time_Value_T () {}
/// Constructor.
explicit ACE_Time_Value_T (time_t sec, suseconds_t usec = 0)
@@ -111,7 +111,7 @@ public:
* @note The only reason this is here is to allow the use of ACE_Atomic_Op
* with ACE_Time_Value.
*/
- ACE_Time_Value_T<TIME_POLICY> &operator++ (void);
+ ACE_Time_Value_T<TIME_POLICY> &operator++ ();
/// Decrement microseconds as postfix.
/**
@@ -125,7 +125,7 @@ public:
* @note The only reason this is here is to allow the use of ACE_Atomic_Op
* with ACE_Time_Value.
*/
- ACE_Time_Value_T<TIME_POLICY> &operator-- (void);
+ ACE_Time_Value_T<TIME_POLICY> &operator-- ();
/// Get current time of day according to time policy.
/**