summaryrefslogtreecommitdiff
path: root/ACE/examples/Shared_Malloc/Malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Shared_Malloc/Malloc.h')
-rw-r--r--ACE/examples/Shared_Malloc/Malloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Shared_Malloc/Malloc.h b/ACE/examples/Shared_Malloc/Malloc.h
index 2cce26fb98e..facf80c8236 100644
--- a/ACE/examples/Shared_Malloc/Malloc.h
+++ b/ACE/examples/Shared_Malloc/Malloc.h
@@ -17,11 +17,11 @@ class Malloc
// Allocator Singleton.
{
public:
- static ACE_Allocator *instance (void);
+ static ACE_Allocator *instance ();
// Returns static instance.
private:
- Malloc (void);
+ Malloc ();
// Ensure Singleton.
static ACE_Allocator *instance_;