mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 10:08:41 +00:00
Made sure that _I32_MIN is defined (it appears to be a Windows only thing)
This commit is contained in:
parent
5998e7b720
commit
c01afd5fbf
@ -26,6 +26,10 @@
|
||||
#include "nsIPresContext.h"
|
||||
#include <limits.h>
|
||||
|
||||
#if !defined(_I32_MIN)
|
||||
#define _I32_MIN (-2147483647i32 - 1) /* minimum signed 32 bit value */
|
||||
#endif
|
||||
|
||||
static NS_DEFINE_IID(kIStyleRuleIID, NS_ISTYLE_RULE_IID);
|
||||
|
||||
class LayerPart : public nsHTMLContainer {
|
||||
|
Loading…
x
Reference in New Issue
Block a user