From 4af95e0a58b2281d06bd2e57a7fc4999d802a71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20=C3=81vila=20de=20Esp=C3=ADndola?= Date: Thu, 23 Aug 2012 19:57:51 -0400 Subject: [PATCH] Bug 784895 - Remove unnecessary token pasting. r=mrbkap. --- dom/workers/RuntimeService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/workers/RuntimeService.cpp b/dom/workers/RuntimeService.cpp index 24a6fa8db503..9fcd55ffe098 100644 --- a/dom/workers/RuntimeService.cpp +++ b/dom/workers/RuntimeService.cpp @@ -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