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/stroke/Canvas.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/freestyle/intern/stroke/Canvas.h') diff --git a/source/blender/freestyle/intern/stroke/Canvas.h b/source/blender/freestyle/intern/stroke/Canvas.h index dc752f1c94d..07aa171534a 100644 --- a/source/blender/freestyle/intern/stroke/Canvas.h +++ b/source/blender/freestyle/intern/stroke/Canvas.h @@ -40,6 +40,10 @@ #include "../system/FreestyleConfig.h" +#ifdef WITH_CXX_GUARDEDALLOC +#include "MEM_guardedalloc.h" +#endif + namespace Freestyle { using namespace Geometry; @@ -239,6 +243,10 @@ public: void resetModified(bool iMod = false); void causalStyleModules(std::vector& vec, unsigned index = 0); void setModified(unsigned index, bool b); + +#ifdef WITH_CXX_GUARDEDALLOC + MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Canvas") +#endif }; } /* namespace Freestyle */ -- cgit v1.2.3