summaryrefslogtreecommitdiff
path: root/ACE/ace/Log_Msg_Backend.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-01-13 10:28:36 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-01-13 10:28:36 +0100
commitab0b550403f711d725405afdd04475107b8f3bd2 (patch)
treed658063c77cea1da5b324b4c04691b1aa6310868 /ACE/ace/Log_Msg_Backend.h
parent61da3abdcfc16295ed34ab552b35dce4f2b78bad (diff)
downloadATCD-ab0b550403f711d725405afdd04475107b8f3bd2.tar.gz
Make use of C++ default/override
Diffstat (limited to 'ACE/ace/Log_Msg_Backend.h')
-rw-r--r--ACE/ace/Log_Msg_Backend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Log_Msg_Backend.h b/ACE/ace/Log_Msg_Backend.h
index 87b42f69b5c..a003f70cb62 100644
--- a/ACE/ace/Log_Msg_Backend.h
+++ b/ACE/ace/Log_Msg_Backend.h
@@ -40,7 +40,7 @@ class ACE_Export ACE_Log_Msg_Backend
{
public:
/// No-op virtual destructor.
- virtual ~ACE_Log_Msg_Backend (void);
+ virtual ~ACE_Log_Msg_Backend ();
/**
* Open the back end object. Perform any actions needed to prepare
@@ -64,10 +64,10 @@ public:
* @retval Currently ignored, but to be safe, return 0 for success;
* -1 for failure.
*/
- virtual int reset (void) = 0;
+ virtual int reset () = 0;
/// Close the backend completely.
- virtual int close (void) = 0;
+ virtual int close () = 0;
/**
* Process a log record.