diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-09 13:31:46 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-09 13:31:46 +0100 |
commit | 317dd62b7112b590efe99283ceb4b2e5e5649884 (patch) | |
tree | 4df9cfc065c67e616010437b483dd97d2aba717b /ACE/examples/APG/Svc_Config | |
parent | 60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff) | |
download | ATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz |
Documentation, layout, C++11 changes
Diffstat (limited to 'ACE/examples/APG/Svc_Config')
-rw-r--r-- | ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h | 2 | ||||
-rw-r--r-- | ACE/examples/APG/Svc_Config/HA_Status_Static.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h b/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h index c6c302021f6..4b5cc137060 100644 --- a/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h +++ b/ACE/examples/APG/Svc_Config/HA_Status_Dynamic.h @@ -27,7 +27,7 @@ class HASTATUS_Export HA_Status : public ACE_Service_Object public: virtual int init (int argc, ACE_TCHAR *argv[]); - virtual int fini (void); + virtual int fini (); virtual int info (ACE_TCHAR **str, size_t len) const; diff --git a/ACE/examples/APG/Svc_Config/HA_Status_Static.h b/ACE/examples/APG/Svc_Config/HA_Status_Static.h index eb16f9f52e1..ed4e175a46e 100644 --- a/ACE/examples/APG/Svc_Config/HA_Status_Static.h +++ b/ACE/examples/APG/Svc_Config/HA_Status_Static.h @@ -25,7 +25,7 @@ class HA_Status : public ACE_Service_Object { public: virtual int init (int argc, ACE_TCHAR *argv[]); - virtual int fini (void); + virtual int fini (); virtual int info (ACE_TCHAR **str, size_t len) const; private: |