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/view_map/ViewMap.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source/blender/freestyle/intern/view_map/ViewMap.h') diff --git a/source/blender/freestyle/intern/view_map/ViewMap.h b/source/blender/freestyle/intern/view_map/ViewMap.h index cd3dd7aafa2..f684f2b919d 100644 --- a/source/blender/freestyle/intern/view_map/ViewMap.h +++ b/source/blender/freestyle/intern/view_map/ViewMap.h @@ -39,6 +39,10 @@ #include "../system/BaseIterator.h" #include "../system/FreestyleConfig.h" +#ifdef WITH_CXX_GUARDEDALLOC +#include "MEM_guardedalloc.h" +#endif + namespace Freestyle { /**********************************/ @@ -231,6 +235,10 @@ public: /* connects a FEdge to the graph trough a SVertex */ //FEdge *Connect(FEdge *ioEdge, SVertex *ioVertex); + +#ifdef WITH_CXX_GUARDEDALLOC + MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:ViewMap") +#endif }; /**********************************/ @@ -1584,6 +1592,10 @@ public: /* removes the view vertex iViewVertex in the View Shape. */ void RemoveVertex(ViewVertex *iViewVertex); + +#ifdef WITH_CXX_GUARDEDALLOC + MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:ViewShape") +#endif }; -- cgit v1.2.3