From 6ea2dec330a0d460deb1396f258c461be34fa3c8 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Mon, 13 May 2013 22:58:27 +0000 Subject: Added support for WITH_CXX_GUARDEDALLOC build option to the Freestyle module. --- source/blender/freestyle/intern/system/BaseObject.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source/blender/freestyle/intern/system/BaseObject.h') diff --git a/source/blender/freestyle/intern/system/BaseObject.h b/source/blender/freestyle/intern/system/BaseObject.h index c5073527297..a9e501be38f 100644 --- a/source/blender/freestyle/intern/system/BaseObject.h +++ b/source/blender/freestyle/intern/system/BaseObject.h @@ -31,6 +31,10 @@ #include "FreestyleConfig.h" +#ifdef WITH_CXX_GUARDEDALLOC +#include "MEM_guardedalloc.h" +#endif + namespace Freestyle { class LIB_SYSTEM_EXPORT BaseObject @@ -67,6 +71,11 @@ public: private: unsigned _ref_counter; + +#ifdef WITH_CXX_GUARDEDALLOC +public: + MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:BaseObject") +#endif }; } /* namespace Freestyle */ -- cgit v1.2.3