summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/utl_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/utl_string.h')
-rw-r--r--TAO/TAO_IDL/include/utl_string.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/include/utl_string.h b/TAO/TAO_IDL/include/utl_string.h
index 9489421c04f..7b6d788df13 100644
--- a/TAO/TAO_IDL/include/utl_string.h
+++ b/TAO/TAO_IDL/include/utl_string.h
@@ -79,24 +79,24 @@ class TAO_IDL_FE_Export UTL_String
// =DESCRIPTION
// string class to store identifiers
public:
- UTL_String (void);
+ UTL_String ();
UTL_String (const char *str, bool take_copy= false);
UTL_String (UTL_String *s, bool force_copy= false);
- virtual ~UTL_String (void);
+ virtual ~UTL_String ();
- virtual void destroy (void);
+ virtual void destroy ();
// Cleanup function.
virtual void dump (ACE_OSTREAM_TYPE &o);
// Dump to the ostream.
- char *get_string (void) {return this->p_str;}
+ char *get_string () {return this->p_str;}
// Get contents of utl_string.
- char *get_canonical_rep (void);
+ char *get_canonical_rep ();
// Get canonical representation. This is (implemented as) the all upper
// case corresponding string.