commit 22c69707ce058aa3b558acd61ac7679004ad9612
parent 7e53000a1fce22a89bdaa8b44df9ea23a4b8ce3e
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Wed, 15 Jul 2015 15:37:26 -0400
cosmetics
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisc/lisc.h b/lisc/lisc.h
@@ -39,11 +39,11 @@ req(Ref a, Ref b)
enum {
RSym = 0,
RConst = 1,
- NRef = ((ushort)-1)>>1,
+ NRef = (1<<15) - 1
};
-#define SYM(x) (Ref){ RSym, x }
-#define CONST(x) (Ref){ RConst, x }
+#define SYM(x) (Ref){RSym, x}
+#define CONST(x) (Ref){RConst, x}
enum {
OXXX,