webengine/osswebengine/WebCore/platform/StaticConstructors.h
changeset 16 a359256acfc6
parent 0 dd21522fd290
--- a/webengine/osswebengine/WebCore/platform/StaticConstructors.h	Fri Jul 03 15:54:40 2009 +0100
+++ b/webengine/osswebengine/WebCore/platform/StaticConstructors.h	Thu Aug 27 07:44:59 2009 +0300
@@ -38,6 +38,6 @@
 #else
 // Define an correctly-sized array of pointers to avoid static initialization.
 // Use an array of pointers instead of an array of char in case there is some alignment issue.
-#define DEFINE_GLOBAL(type, name, ...) \
+#define DEFINE_GLOBAL(type, name, args...) \
     void * name[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)];
 #endif