summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS2/HTTPU/http_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS2/HTTPU/http_status.h')
-rw-r--r--ACE/apps/JAWS2/HTTPU/http_status.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/apps/JAWS2/HTTPU/http_status.h b/ACE/apps/JAWS2/HTTPU/http_status.h
index 209e5e6092c..bba7be512a4 100644
--- a/ACE/apps/JAWS2/HTTPU/http_status.h
+++ b/ACE/apps/JAWS2/HTTPU/http_status.h
@@ -70,14 +70,14 @@ class HTTPU_Export HTTP_SCode : public HTTP_SCode_Base
friend class ACE_Singleton<HTTP_SCode, ACE_SYNCH_MUTEX>;
protected:
- HTTP_SCode (void);
- ~HTTP_SCode (void);
+ HTTP_SCode ();
+ ~HTTP_SCode ();
public:
const char * operator[] (int) const;
// Return the reason string corresponding to a status code number.
- static HTTP_SCode *instance (void);
+ static HTTP_SCode *instance ();
// Return reference to the singleton.
enum
@@ -85,7 +85,7 @@ public:
SC_TABLE_SIZE = MAX_STATUS_CODE - MIN_STATUS_CODE + 1
};
- void dump (void);
+ void dump ();
private:
static const char *table_[SC_TABLE_SIZE];