summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence.cpp
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-03-26 04:33:33 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-03-26 04:33:33 +0000
commitc64861a722b8863ed7093734f95b6458e72d31ff (patch)
tree7110208b76fe60e46606a99faaeda5792600d131 /TAO/tao/Sequence.cpp
parentc63e12e0f190976cc0bce5ed86014f7b45da2cd5 (diff)
downloadATCD-c64861a722b8863ed7093734f95b6458e72d31ff.tar.gz
ChangeLogTag:Fri Mar 26 10:28:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Sequence.cpp')
-rw-r--r--TAO/tao/Sequence.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/TAO/tao/Sequence.cpp b/TAO/tao/Sequence.cpp
index 966dc2b8714..f173f913847 100644
--- a/TAO/tao/Sequence.cpp
+++ b/TAO/tao/Sequence.cpp
@@ -58,15 +58,16 @@ check_bounds(
"Access error in TAO_Sequence file=%s, line=%u, "
"idx=%u, max=%u\n",
ACE_TEXT_CHAR_TO_TCHAR (filename), lineno, tao_idx, tao_max));
- }
-
- // @@TODO: When we have a hook setup, we can totally ignore this or
- // even remove this.
+
+ // @@TODO: When we have a hook setup, we can totally ignore this or
+ // even remove this.
#if defined (ACE_HAS_EXCEPTIONS)
- ACE_THROW (CORBA::BAD_PARAM ());
+ ACE_THROW (CORBA::BAD_PARAM ());
+ ACE_OS::abort ();
#else
- ACE_OS::abort ();
+ ACE_OS::abort ();
#endif /*ACE_HAS_EXCEPTIONS*/
+ }
}
// *************************************************************