Use C++ guarded alloc for FilterBase

This commit is contained in:
Campbell Barton 2015-09-08 19:39:05 +10:00
parent 5f120f7723
commit abb63be099
1 changed files with 4 additions and 0 deletions

View File

@ -116,6 +116,10 @@ protected:
// otherwise return converted pixel
return m_previous->m_filter->convert(src, x, y, size, pixSize);
}
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("GE:FilterBase")
#endif
};