{ \
const noref int i = _i; \
ITER_CONST noref entity it = arr[i]; \
- if (cond) { LAMBDA(body) } \
+ if (cond) { LAMBDA(body); } \
} \
MACRO_END
const noref int i = _i; \
ITER_CONST noref entity it = _it; \
_next = _it.next; \
- if (cond) { LAMBDA(body) } \
+ if (cond) { LAMBDA(body); } \
} \
MACRO_END
{ \
const noref int i = _i; \
const noref string it = _it; \
- if (cond) { LAMBDA(body) } \
+ if (cond) { LAMBDA(body); } \
} \
MACRO_END
while ((_it = STRING_ITERATOR_GET(iter)) > 0) \
{ \
const noref int it = _it; \
- if (cond) { LAMBDA(body) } \
+ if (cond) { LAMBDA(body); } \
} \
MACRO_END
{ \
const noref int i = _i; \
ITER_CONST noref entity it = _it; \
- if (cond) LAMBDA(body) \
+ if (cond) LAMBDA(body); \
} \
MACRO_END
#define MUTEX_LOCK(this) MACRO_BEGIN \
{ \
const noref int i = _i; \
ITER_CONST noref entity it = _it; \
- if (cond) LAMBDA(body) \
+ if (cond) LAMBDA(body); \
} \
MACRO_END
/** marker field, always NULL */
{ \
const noref int i = _i; \
ITER_CONST noref entity it = ftoe(i); \
- if(cond) { LAMBDA(body) } \
+ if(cond) { LAMBDA(body); } \
} \
MACRO_END
{ \
const noref int i = _i; \
ITER_CONST noref entity it = _FCR_clients[i]; \
- if (cond) { LAMBDA(body) } \
+ if (cond) { LAMBDA(body); } \
} \
_FCR_entered = false; \
MACRO_END