diff options
Diffstat (limited to 'TAO/TAO_IDL/include/utl_namelist.h')
-rw-r--r-- | TAO/TAO_IDL/include/utl_namelist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/include/utl_namelist.h b/TAO/TAO_IDL/include/utl_namelist.h index 46b946faa5b..2a1d7ab02af 100644 --- a/TAO/TAO_IDL/include/utl_namelist.h +++ b/TAO/TAO_IDL/include/utl_namelist.h @@ -82,14 +82,14 @@ public: UTL_NameList *cdr); // Get list item. - UTL_ScopedName *head (void); + UTL_ScopedName *head (); // Accessors. - bool truncatable (void) const; + bool truncatable () const; void truncatable (bool val); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // List item. @@ -106,7 +106,7 @@ public: UTL_NamelistActiveIterator (UTL_NameList *source); // Get current item. - UTL_ScopedName *item (void); + UTL_ScopedName *item (); }; #endif // _UTL_NAMELIST_UTL_NAMELIST_HH |