summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp')
-rw-r--r--TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp b/TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp
index 41178b04976..efdfdc48b71 100644
--- a/TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp
+++ b/TAO/orbsvcs/examples/PSS/Simple_Naming_i.cpp
@@ -20,28 +20,24 @@ Naming_Context_i::~Naming_Context_i ()
int
Naming_Context_i::bind (const char *n,
- const char *obj
- ACE_ENV_ARG_DECL)
+ const char *obj)
ACE_THROW_SPEC ((CORBA::SystemException))
{
// Save the binding to database.
int result =
- this->code_gen_->set_name_obj_ref (n, obj ACE_ENV_ARG_PARAMETER);
- ACE_CHECK_RETURN (-1);
+ this->code_gen_->set_name_obj_ref (n, obj);
return result;
}
char *
-Naming_Context_i::find (const char *n
- ACE_ENV_ARG_DECL)
+Naming_Context_i::find (const char *n)
ACE_THROW_SPEC ((CORBA::SystemException))
{
// Get the Stringified object reference corresponding to
// 'n'
CORBA::String_var obj_ref =
- this->code_gen_->get_obj_ref (n ACE_ENV_ARG_PARAMETER);
- ACE_CHECK_RETURN (0);
+ this->code_gen_->get_obj_ref (n);
return CORBA::string_dup (obj_ref.in ());
}