Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let RETHROW4 and RETHROW5 work
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 16 May 2006 07:06:16 +0000 (07:06 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 16 May 2006 07:06:16 +0000 (07:06 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2207 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/xbt/ex.h

index 12b63ac..70f41fa 100644 (file)
@@ -490,11 +490,11 @@ extern void __xbt_ex_terminate_default(xbt_ex_t *e);
 /** @brief like THROW4, but adding some details to the message of an existing exception
  *  @hideinitializer
  */
-#define RETHROW4(msg,a,b,c,d)   _XBT_PRE_RETHROW msg,a,b,c,    _XBT_POST_RETHROW
+#define RETHROW4(msg,a,b,c,d)   _XBT_PRE_RETHROW msg,a,b,c,d,  _XBT_POST_RETHROW
 /** @brief like THROW5, but adding some details to the message of an existing exception
  *  @hideinitializer
  */
-#define RETHROW5(msg,a,b,c,d,e) _XBT_PRE_RETHROW msg,a,b,c,d,e _XBT_POST_RETHROW
+#define RETHROW5(msg,a,b,c,d,e) _XBT_PRE_RETHROW msg,a,b,c,d,e, _XBT_POST_RETHROW
 
 /** @brief Exception destructor */
 void xbt_ex_free(xbt_ex_t e);