From ffcf60625154bebdc993ee72927b7b752756ed31 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Wed, 7 May 2014 15:06:54 -0400 Subject: [PATCH] Remove a warning by using #ifndef instead of #if. --- include/chibi/features.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chibi/features.h b/include/chibi/features.h index 4eb8734c..a5cda9c6 100644 --- a/include/chibi/features.h +++ b/include/chibi/features.h @@ -436,7 +436,7 @@ #define SEXP_USE_FLAT_SYNTACTIC_CLOSURES 0 #endif -#if SEXP_USE_UNWRAPPED_TOPLEVEL_BINDINGS +#ifndef SEXP_USE_UNWRAPPED_TOPLEVEL_BINDINGS #define SEXP_USE_UNWRAPPED_TOPLEVEL_BINDINGS 0 #endif