summaryrefslogtreecommitdiff
path: root/ACE/ace/FILE.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 13:25:21 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 13:25:21 +0100
commit4067667d2179ec33eecb7d0d2b2f6ae7127cc01c (patch)
treedec72f9c782dfc86af362efe28817c8e6a6a151e /ACE/ace/FILE.h
parent39d3174f11de3c59984043c45f9be30a7aa42dd9 (diff)
downloadATCD-4067667d2179ec33eecb7d0d2b2f6ae7127cc01c.tar.gz
Remove redundant void
Diffstat (limited to 'ACE/ace/FILE.h')
-rw-r--r--ACE/ace/FILE.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/FILE.h b/ACE/ace/FILE.h
index e128eda3a0d..0396afad974 100644
--- a/ACE/ace/FILE.h
+++ b/ACE/ace/FILE.h
@@ -50,14 +50,14 @@ class ACE_Export ACE_FILE : public ACE_IO_SAP
public:
/// Close the ACE_FILE handle without removing the ACE_FILE from
/// the file system.
- int close (void);
+ int close ();
/// Close and remove the ACE_FILE from the file system.
- int remove (void);
+ int remove ();
/// Remove the ACE_FILE from the file system without closing the
/// ACE_FILE handle.
- int unlink (void);
+ int unlink ();
/// Get information on this ACE_FILE.
int get_info (ACE_FILE_Info *finfo);
@@ -83,7 +83,7 @@ public:
int whence = SEEK_CUR);
/// Return an offset for the file handle.
- ACE_OFF_T tell (void);
+ ACE_OFF_T tell ();
/**
* Disable signal @a signum
@@ -100,7 +100,7 @@ public:
int get_remote_addr (ACE_Addr &) const;
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -108,7 +108,7 @@ public:
protected:
/// Ensure that this class is only created by the
/// ACE_FILE_Connector.
- ACE_FILE (void);
+ ACE_FILE ();
/// File we are "connected" with...
ACE_FILE_Addr addr_;