summaryrefslogtreecommitdiff
path: root/ACE/tests/Upgradable_RW_Test.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /ACE/tests/Upgradable_RW_Test.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/tests/Upgradable_RW_Test.h')
-rw-r--r--ACE/tests/Upgradable_RW_Test.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Upgradable_RW_Test.h b/ACE/tests/Upgradable_RW_Test.h
index 24ae64d5e30..f27f18995f9 100644
--- a/ACE/tests/Upgradable_RW_Test.h
+++ b/ACE/tests/Upgradable_RW_Test.h
@@ -53,7 +53,7 @@ public:
{
}
- ACE_CString *value (void)
+ ACE_CString *value ()
{
return this->item_;
}
@@ -74,7 +74,7 @@ typedef ACE_Double_Linked_List<Element> Linked_List;
class Time_Calculation
{
public:
- Time_Calculation (void)
+ Time_Calculation ()
: reported_times_ (0)
{
times_.real_time = 0;
@@ -85,7 +85,7 @@ public:
/// take the time of the thread and add it to
void report_time (ACE_Profile_Timer::ACE_Elapsed_Time &elapsed_time);
- void print_stats (void);
+ void print_stats ();
private:
/// add the times incrementally