From 9bd23b2d4cc94f6b31d7c45eb9dd20dcb64ccebe Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 3 Oct 2018 00:01:48 +0200 Subject: [PATCH] nimbase.h: use 0 instead of nullptr because travis' C++ compiler doesn't know nullptr --- lib/nimbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nimbase.h b/lib/nimbase.h index 017f0d5f63..c04d378c54 100644 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -280,7 +280,7 @@ namespace USE_NIM_NAMESPACE { # define NIM_FALSE false # endif # define NIM_BOOL bool -# define NIM_NIL nullptr +# define NIM_NIL 0 #else # ifdef bool # define NIM_BOOL bool