summaryrefslogtreecommitdiff
path: root/ACE/ace/Arg_Shifter.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 14:26:43 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 14:26:43 +0100
commit924369e56549553d522ee19dee6d0e41d991859c (patch)
treee3a6d791831e75e2c264e55fb6fc41aef751168c /ACE/ace/Arg_Shifter.h
parent5b15b048b81764d2519877337c1967f855c6a1da (diff)
downloadATCD-924369e56549553d522ee19dee6d0e41d991859c.tar.gz
Remove redundant void
Diffstat (limited to 'ACE/ace/Arg_Shifter.h')
-rw-r--r--ACE/ace/Arg_Shifter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Arg_Shifter.h b/ACE/ace/Arg_Shifter.h
index 29a6b345113..ec1817e692f 100644
--- a/ACE/ace/Arg_Shifter.h
+++ b/ACE/ace/Arg_Shifter.h
@@ -85,10 +85,10 @@ public:
CHAR_TYPE **temp = 0);
/// Destructor.
- ~ACE_Arg_Shifter_T (void);
+ ~ACE_Arg_Shifter_T ();
/// Get the current head of the vector.
- const CHAR_TYPE *get_current (void) const;
+ const CHAR_TYPE *get_current () const;
/**
* If the @a flag matches the current_arg of arg shifter
@@ -172,18 +172,18 @@ public:
int ignore_arg (int number = 1);
/// Returns the number of args left to see in the vector.
- int is_anything_left (void) const;
+ int is_anything_left () const;
/// Returns 1 if there's a next item in the vector and it begins with
/// '-'.
- int is_option_next (void) const;
+ int is_option_next () const;
/// Returns 1 if there's a next item in the vector and it doesn't
/// begin with '-'.
- int is_parameter_next (void) const;
+ int is_parameter_next () const;
/// Returns the number of irrelevant args seen.
- int num_ignored_args (void) const;
+ int num_ignored_args () const;
private:
/// Copy Constructor should not be used.
@@ -193,7 +193,7 @@ private:
ACE_UNIMPLEMENTED_FUNC (ACE_Arg_Shifter_T operator= (const ACE_Arg_Shifter_T<CHAR_TYPE> &))
/// Refactor the constructor logic.
- void init (void);
+ void init ();
/// The size of the argument vector.
int &argc_;