summaryrefslogtreecommitdiff
path: root/ACE/ace/Env_Value_T.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/Env_Value_T.h
parentc7c7a9dd9b8cd5cfc699c3c8b5f682bba5423a79 (diff)
downloadATCD-f08a54e04d9eb26b402076b961fb5122ec1bbc3d.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/Env_Value_T.h')
-rw-r--r--ACE/ace/Env_Value_T.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Env_Value_T.h b/ACE/ace/Env_Value_T.h
index 4e268d3f933..6e97e3602d7 100644
--- a/ACE/ace/Env_Value_T.h
+++ b/ACE/ace/Env_Value_T.h
@@ -44,26 +44,26 @@ public:
* variable name or a default value. Before being useful it must
* open()'d.
*/
- ACE_Env_Value (void);
+ ACE_Env_Value ();
/// Constructor that calls open().
ACE_Env_Value (const ACE_TCHAR *varname, const T &vardefault);
/// Destroy the value.
- ~ACE_Env_Value (void);
+ ~ACE_Env_Value ();
/// Returns the value as type T.
- operator T (void);
+ operator T ();
/// The constructor, read @a varname from the environment, using
/// @a defval as its value if it is not defined.
void open (const ACE_TCHAR *varname, const T &defval);
/// Returns the name of the variable being tracked.
- const ACE_TCHAR *varname (void) const;
+ const ACE_TCHAR *varname () const;
private:
- void fetch_value (void);
+ void fetch_value ();
const ACE_TCHAR *varname_;
T value_;