diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-24 12:15:00 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-24 12:15:00 +0000 |
commit | 20639f6bcf64a9ddd22edffd39821f6794cee699 (patch) | |
tree | 5a310fc0b09d4d76845c1a6479745aba969b14a2 /TAO/tao/Invocation.cpp | |
parent | f704280e89033c91c631fd04b0c367e3f6ba35bc (diff) | |
download | ATCD-20639f6bcf64a9ddd22edffd39821f6794cee699.tar.gz |
(invoke_i): removed ACE_NOTREACHED wrapper from final return statement.
Diffstat (limited to 'TAO/tao/Invocation.cpp')
-rw-r--r-- | TAO/tao/Invocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Invocation.cpp b/TAO/tao/Invocation.cpp index fd19485287f..325778fd787 100644 --- a/TAO/tao/Invocation.cpp +++ b/TAO/tao/Invocation.cpp @@ -881,7 +881,7 @@ TAO_GIOP_Twoway_Invocation::invoke_i (CORBA::Environment &ACE_TRY_ENV) return this->location_forward (this->inp_stream_, ACE_TRY_ENV); } - ACE_NOTREACHED (return TAO_INVOKE_EXCEPTION); + return TAO_INVOKE_EXCEPTION; } // **************************************************************** |