Bug 927349 follow-up to (hopefully) fix breakage from GetCurrentTime on non-unified Windows build on a CLOSED TREE

This commit is contained in:
Brian Birtles 2014-12-22 13:16:11 +09:00
parent baf0a2195b
commit 7819d10f02

View File

@ -21,6 +21,12 @@
#undef CurrentTime
#endif
// GetCurrentTime is defined in winbase.h as zero argument macro forwarding to
// GetTickCount().
#ifdef GetCurrentTime
#undef GetCurrentTime
#endif
struct JSContext;
class nsCSSPropertySet;
class nsIDocument;