Bug 784895 - Remove unnecessary token pasting. r=mrbkap.

This commit is contained in:
Rafael Ávila de Espíndola 2012-08-23 19:57:51 -04:00
parent 1ddcfabab5
commit 23e4d495f0

View File

@ -99,7 +99,7 @@ MOZ_STATIC_ASSERT(MAX_WORKERS_PER_DOMAIN >= 1,
if (!workers.IsEmpty()) { \
AutoSafeJSContext cx; \
for (uint32_t index = 0; index < workers.Length(); index++) { \
workers[index]-> _func (cx, ##__VA_ARGS__); \
workers[index]-> _func (cx, __VA_ARGS__); \
} \
} \
PR_END_MACRO