diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-02 16:24:56 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-02 16:24:56 +0000 |
commit | a64cb68ef91ab713cafa00f8f4e5136b6a901bda (patch) | |
tree | 938f79eecde4a870b25962a9a4474efce59f4ed1 /TAO/tao/IIOP_Connector.h | |
parent | 881cb82d16e5d984736bbccbb7b801f5712a3799 (diff) | |
download | ATCD-a64cb68ef91ab713cafa00f8f4e5136b6a901bda.tar.gz |
Removed the return value from make_profile(). This was a case
where an error return value was "competing" with native
exception handling. It makes more sense to handle the exception
alone. Thanks to Carlos for talking this issue through with me.
Added a default value for the CORBA_Environment argument in
make_profile().
Diffstat (limited to 'TAO/tao/IIOP_Connector.h')
-rw-r--r-- | TAO/tao/IIOP_Connector.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/IIOP_Connector.h b/TAO/tao/IIOP_Connector.h index 8560f106798..f6285878d6e 100644 --- a/TAO/tao/IIOP_Connector.h +++ b/TAO/tao/IIOP_Connector.h @@ -85,10 +85,10 @@ public: protected: // = More TAO_Connector methods, please check the documentation on - // Pluggable.h - virtual int make_profile (const char *endpoint, - TAO_Profile *&, - CORBA::Environment &ACE_TRY_ENV); + // Pluggable.h + virtual void make_profile (const char *endpoint, + TAO_Profile *&, + CORBA::Environment &ACE_TRY_ENV = TAO_default_environment ()); virtual int check_prefix (const char *endpoint); |