Author: chromatic
Date: Fri Mar 30 10:02:56 2007
New Revision: 17853
Modified:
trunk/include/parrot/sub.h
Log:
Fix Solaris 32-bit compile; remove no 1 << 31 (Steve Peters, RT #41837).
Modified: trunk/include/parrot/sub.h
==============================================================================
--- trunk/include/parrot/sub.h (original)
+++ trunk/include/parrot/sub.h Fri Mar 30 10:02:56 2007
@@ -87,7 +87,6 @@
SUB_COMP_FLAG_BIT_28 = 1 << 28,
SUB_COMP_FLAG_BIT_29 = 1 << 29,
SUB_COMP_FLAG_BIT_30 = 1 << 30,
- SUB_COMP_FLAG_BIT_31 = 1 << 31,
SUB_COMP_FLAG_MASK = 0x00000400,
} sub_comp_flags_enum;