From 3e41c8ad6fd194c567471b39b88fddccc599a946 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 11 Aug 2014 20:58:42 +0600 Subject: Fix compilation error with debug scons The issue is that we've got hell with DEBUG and _DEBUG, theu're defined really inconsistent acros CMake and SCons. Used more reliable NDEBUG definition for IDP_spit. --- source/blender/blenkernel/BKE_idprop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/BKE_idprop.h') diff --git a/source/blender/blenkernel/BKE_idprop.h b/source/blender/blenkernel/BKE_idprop.h index 0230eaf92bc..2ab3d84dea5 100644 --- a/source/blender/blenkernel/BKE_idprop.h +++ b/source/blender/blenkernel/BKE_idprop.h @@ -143,7 +143,7 @@ void IDP_UnlinkProperty(struct IDProperty *prop); # define IDP_IDPArray(prop) ((IDProperty *) (prop)->data.pointer) #endif -#ifdef DEBUG +#ifndef NDEBUG /* for printout only */ void IDP_spit(IDProperty *prop); #endif -- cgit v1.2.3