summaryrefslogtreecommitdiff
path: root/ACE/ace/ARGV.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
commitf08a54e04d9eb26b402076b961fb5122ec1bbc3d (patch)
treee6c7cac74238a53dfd7475180285fccb86cb63a4 /ACE/ace/ARGV.h
parentc7c7a9dd9b8cd5cfc699c3c8b5f682bba5423a79 (diff)
downloadATCD-f08a54e04d9eb26b402076b961fb5122ec1bbc3d.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/ARGV.h')
-rw-r--r--ACE/ace/ARGV.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ACE/ace/ARGV.h b/ACE/ace/ARGV.h
index 72847df2eea..30513946040 100644
--- a/ACE/ace/ARGV.h
+++ b/ACE/ace/ARGV.h
@@ -35,7 +35,7 @@ class ACE_ARGV_Queue_Entry_T
{
public:
/// Initialize a ACE_ARGV_Queue_Entry_T.
- ACE_ARGV_Queue_Entry_T (void);
+ ACE_ARGV_Queue_Entry_T ();
/**
* Initialize a ACE_ARGV_Queue_Entry_T.
@@ -61,10 +61,10 @@ public:
/// We need this destructor to keep some compilers from complaining.
/// It's just a no-op, however.
- ~ACE_ARGV_Queue_Entry_T (void);
+ ~ACE_ARGV_Queue_Entry_T ();
/// Dump the state of this object.
- void dump (void) const;
+ void dump () const;
// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -194,7 +194,7 @@ public:
explicit ACE_ARGV_T (bool substitute_env_args = true);
/// Destructor.
- ~ACE_ARGV_T (void);
+ ~ACE_ARGV_T ();
/** @name Accessor methods
*
@@ -216,22 +216,22 @@ public:
* maintained internally to this class. Do not change or delete either the
* pointers or the memory to which they refer.
*/
- CHAR_TYPE **argv (void);
+ CHAR_TYPE **argv ();
/// Returns the current number of arguments.
- int argc (void) const;
+ int argc () const;
/**
* Returns a single string form of the current arguments. The returned
* pointer refers to memory maintained internally to this class. Do not
* change or delete it.
*/
- const CHAR_TYPE *buf (void);
+ const CHAR_TYPE *buf ();
//@}
/// Dump the state of this object.
- void dump (void) const;
+ void dump () const;
// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -282,10 +282,10 @@ private:
ACE_ARGV_T operator= (ACE_ARGV_T<CHAR_TYPE>&&) = delete;
/// Creates buf_ from the queue of added args, deletes previous buf_.
- int create_buf_from_queue (void);
+ int create_buf_from_queue ();
/// Converts buf_ into the CHAR_TYPE *argv[] format.
- int string_to_argv (void);
+ int string_to_argv ();
/// Replace args with environment variable values?
bool substitute_env_args_;