X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d0ffc37686edcc803601f76ab51fdfed5fc2f241..b3b356352e87ae00a20f737c48e19b0c8413455a:/include/xbt/swag.h diff --git a/include/xbt/swag.h b/include/xbt/swag.h index 2e3bed9751..8800b4bcb1 100644 --- a/include/xbt/swag.h +++ b/include/xbt/swag.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2012. The SimGrid Team. +/* Copyright (c) 2004-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -149,11 +149,17 @@ static XBT_INLINE void *xbt_swag_getFirst(xbt_swag_t swag) * @param swag what to iterate over * @warning you cannot modify the \a swag while using this loop * @hideinitializer */ +#ifndef __cplusplus #define xbt_swag_foreach(obj,swag) \ for((obj)=xbt_swag_getFirst((swag)); \ (obj)!=NULL; \ (obj)=xbt_swag_getNext((obj),(swag)->offset)) - +#else +#define xbt_swag_foreach(obj,swag) \ + for((obj)=(decltype(obj)) xbt_swag_getFirst((swag)); \ + (obj)!=NULL; \ + (obj)=(decltype(obj)) xbt_swag_getNext((obj),(swag)->offset)) +#endif /** * @brief A safe swag iterator * @param obj the indice of the loop