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/Operators.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source/blender/freestyle/intern/stroke/Operators.h') diff --git a/source/blender/freestyle/intern/stroke/Operators.h b/source/blender/freestyle/intern/stroke/Operators.h index 7cff86eafce..61b20f556b5 100644 --- a/source/blender/freestyle/intern/stroke/Operators.h +++ b/source/blender/freestyle/intern/stroke/Operators.h @@ -43,6 +43,10 @@ #include "../view_map/Interface1D.h" #include "../view_map/ViewMap.h" +#ifdef WITH_CXX_GUARDEDALLOC +#include "MEM_guardedalloc.h" +#endif + namespace Freestyle { /*! Class defining the operators used in a style module. @@ -264,6 +268,11 @@ private: static I1DContainer _current_chains_set; static I1DContainer *_current_set; static StrokesContainer _current_strokes_set; + +#ifdef WITH_CXX_GUARDEDALLOC +public: + MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Operators") +#endif }; } /* namespace Freestyle */ -- cgit v1.2.3