summaryrefslogtreecommitdiff
path: root/ACE/ace/WFMO_Reactor.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 11:49:28 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 11:49:28 +0100
commit3a135b20e2c3c3dd407b9b768a411645eca6a7e0 (patch)
tree71301b1d02a56c2137c4e4c1b378aea4acd139a7 /ACE/ace/WFMO_Reactor.h
parent199259c5d2d5f4a6550382a683f5d54ac482fcd1 (diff)
downloadATCD-3a135b20e2c3c3dd407b9b768a411645eca6a7e0.tar.gz
Various cleanup and use of C++11 features
Diffstat (limited to 'ACE/ace/WFMO_Reactor.h')
-rw-r--r--ACE/ace/WFMO_Reactor.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/ACE/ace/WFMO_Reactor.h b/ACE/ace/WFMO_Reactor.h
index fb778aba0cf..0c1d5dab885 100644
--- a/ACE/ace/WFMO_Reactor.h
+++ b/ACE/ace/WFMO_Reactor.h
@@ -188,10 +188,10 @@ public:
bool suspend_entry_;
/// Default constructor
- Current_Info (void);
+ Current_Info ();
/// Reset the state of the structure
- void reset (void);
+ void reset ();
/// Set the structure to these new values
void set (bool io_entry,
@@ -227,10 +227,10 @@ public:
bool suspend_entry_;
/// Default constructor
- To_Be_Added_Info (void);
+ To_Be_Added_Info ();
/// Reset the state of the structure
- void reset (void);
+ void reset ();
/// Set the structure to these new values
void set (ACE_HANDLE event_handle,
@@ -268,10 +268,10 @@ public:
bool resume_entry_;
/// Constructor used for initializing the structure
- Suspended_Info (void);
+ Suspended_Info ();
/// Reset the state of the structure
- void reset (void);
+ void reset ();
/// Set the structure to these new values
void set (ACE_HANDLE event_handle,
@@ -1343,9 +1343,8 @@ protected:
sig_atomic_t deactivated_;
private:
- /// Deny access since member-wise won't work...
- ACE_WFMO_Reactor (const ACE_WFMO_Reactor &);
- ACE_WFMO_Reactor &operator = (const ACE_WFMO_Reactor &);
+ ACE_WFMO_Reactor (const ACE_WFMO_Reactor &) = delete;
+ ACE_WFMO_Reactor &operator = (const ACE_WFMO_Reactor &) = delete;
};
ACE_END_VERSIONED_NAMESPACE_DECL