summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-12-03 23:52:58 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-12-03 23:52:58 +0000
commitab4fa3b075993f4bae173e82120416497a52031a (patch)
treec86521c6e64241306f2cd9bba054fd80586ab831
parent005aafb271bd2d1bd4a5c8c21005eb5edab4910d (diff)
downloadATCD-ab4fa3b075993f4bae173e82120416497a52031a.tar.gz
ChangeLogTag:Mon Dec 3 15:51:20 2001 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/CORBA_macros.h4
4 files changed, 21 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index fa845881eb7..4934604e88a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Dec 3 15:51:20 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/CORBA_macros.h:
+ Removed a number of ACE_UNUSED_ARG(ACE_TRY_ENV) instances that
+ are no longer needed with the new treatment for
+ CORBA::Environment.
+
Mon Dec 03 14:22:57 2001 Carlos O'Ryan <coryan@uci.edu>
* ace/ace_dll.dsp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index fa845881eb7..4934604e88a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Mon Dec 3 15:51:20 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/CORBA_macros.h:
+ Removed a number of ACE_UNUSED_ARG(ACE_TRY_ENV) instances that
+ are no longer needed with the new treatment for
+ CORBA::Environment.
+
Mon Dec 03 14:22:57 2001 Carlos O'Ryan <coryan@uci.edu>
* ace/ace_dll.dsp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index fa845881eb7..4934604e88a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Mon Dec 3 15:51:20 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/CORBA_macros.h:
+ Removed a number of ACE_UNUSED_ARG(ACE_TRY_ENV) instances that
+ are no longer needed with the new treatment for
+ CORBA::Environment.
+
Mon Dec 03 14:22:57 2001 Carlos O'Ryan <coryan@uci.edu>
* ace/ace_dll.dsp:
diff --git a/ace/CORBA_macros.h b/ace/CORBA_macros.h
index cee5b5bbdaf..fe6d46b029c 100644
--- a/ace/CORBA_macros.h
+++ b/ace/CORBA_macros.h
@@ -78,7 +78,6 @@
// ACE_THROW_INT should not be used by the user.
# define ACE_THROW_INT(EXCEPTION) \
do { \
- ACE_UNUSED_ARG(ACE_TRY_ENV); \
throw EXCEPTION; \
} while (0)
@@ -86,7 +85,6 @@
// used within try blocks.
# define ACE_THROW(EXCEPTION) \
do { \
- ACE_UNUSED_ARG(ACE_TRY_ENV); \
throw EXCEPTION; \
} while (0)
@@ -95,14 +93,12 @@
# define ACE_THROW_RETURN(EXCEPTION, RETV) \
do \
{ \
- ACE_UNUSED_ARG(ACE_TRY_ENV); \
throw EXCEPTION; \
return RETV; \
} while (0)
# else /* WIN32 */
# define ACE_THROW_RETURN(EXCEPTION,RETV) \
do { \
- ACE_UNUSED_ARG(ACE_TRY_ENV); \
throw EXCEPTION; \
} while (0)
# endif /* WIN32 */