From aea673c7649a8493c93b21c1eb94fb80079b355b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 26 May 2017 15:13:22 +0000 Subject: [PATCH] Added parens --- include/cyclone/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cyclone/runtime.h b/include/cyclone/runtime.h index 08771e88..4ba996e7 100644 --- a/include/cyclone/runtime.h +++ b/include/cyclone/runtime.h @@ -369,7 +369,7 @@ object Cyc_sub(void *data, object cont, int argc, object n, ...); object Cyc_mul(void *data, object cont, int argc, object n, ...); object Cyc_div(void *data, object cont, int argc, object n, ...); // Future idea, there may be uses for this in addition to if statements: -#define Cyc_if(c,t,e) ((boolean_f != c) ? t : e) +#define Cyc_if(c,t,e) ((boolean_f != c) ? (t) : (e)) object Cyc_fast_sum(void *data, object ptr, object x, object y); object Cyc_fast_sub(void *data, object ptr, object x, object y); object Cyc_fast_mul(void *data, object ptr, object x, object y);