diff options
author | marina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 21:44:25 +0000 |
---|---|---|
committer | marina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 21:44:25 +0000 |
commit | c844bd2161c326c1347ab89fdec779efb7b5169f (patch) | |
tree | 1dfd74f49b12f92d0d61abc80c23fc8b3ab97bd2 /TAO | |
parent | e9f35461f5923b899b6a88c6bcfab487990751c2 (diff) | |
download | ATCD-c844bd2161c326c1347ab89fdec779efb7b5169f.tar.gz |
removed warnings
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Naming/Persistent_Bindings_Map.h | 28 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h | 4 |
2 files changed, 14 insertions, 18 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Persistent_Bindings_Map.h b/TAO/orbsvcs/orbsvcs/Naming/Persistent_Bindings_Map.h index 3fdd4a1dd5d..0ef047598ff 100644 --- a/TAO/orbsvcs/orbsvcs/Naming/Persistent_Bindings_Map.h +++ b/TAO/orbsvcs/orbsvcs/Naming/Persistent_Bindings_Map.h @@ -54,27 +54,27 @@ public: size_t current_size (void); // return the size of the underlying hash map. - virtual int bind (const char *id, - const char *kind, - CORBA::Object_ptr obj, - CosNaming::BindingType type); + int bind (const char *id, + const char *kind, + CORBA::Object_ptr obj, + CosNaming::BindingType type); // Bind a new name to a naming context - virtual int rebind (const char *id, - const char *kind, - CORBA::Object_ptr obj, - CosNaming::BindingType type); + int rebind (const char *id, + const char *kind, + CORBA::Object_ptr obj, + CosNaming::BindingType type); // Overwrite the value or type of an existing name in a // ACE_Local_Name_Space or bind a new name to the context, if it // didn't exist yet. (Wide charcter strings interface). - virtual int unbind (const char * id, - const char * kind); + int unbind (const char * id, + const char * kind); - virtual int find (const char * id, - const char * kind, - CORBA::Object_ptr & obj, - CosNaming::BindingType &type); + int find (const char * id, + const char * kind, + CORBA::Object_ptr & obj, + CosNaming::BindingType &type); //A method to get the iterator. diff --git a/TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h b/TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h index 2ff603b3d41..cb7d499deda 100644 --- a/TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h +++ b/TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h @@ -20,10 +20,6 @@ #define TAO_NAME_CONTEXTS_INDEX "Naming_Service_Index" -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - #include "Persistent_Entries.h" class TAO_Index |