diff options
Diffstat (limited to 'ACE/ace/Signal.h')
-rw-r--r-- | ACE/ace/Signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Signal.h b/ACE/ace/Signal.h index 99f49445b21..d16268539fa 100644 --- a/ACE/ace/Signal.h +++ b/ACE/ace/Signal.h @@ -223,7 +223,7 @@ public: /// This is kind of conditional Guard, needed when guard should be /// activated only when a specific condition met. When condition == /// true (default), Guard is activated - ACE_Sig_Guard (ACE_Sig_Set *mask = 0, bool condition = true); + ACE_Sig_Guard (ACE_Sig_Set *mask = nullptr, bool condition = true); /// Restore blocked signals. ~ACE_Sig_Guard (); @@ -239,7 +239,7 @@ private: ACE_Sig_Set omask_; /// Guard Condition - bool condition_; + bool const condition_; }; ACE_END_VERSIONED_NAMESPACE_DECL |