Bug 395689: Stop leaks of xslt patterns. Patch by peterv. r/sr/a=me

This commit is contained in:
jonas%sicking.cc 2007-10-03 20:17:51 +00:00
Родитель 285ed95752
Коммит fcf631a599
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -48,6 +48,15 @@ class ProcessorState;
class txPattern
{
public:
txPattern()
{
MOZ_COUNT_CTOR(txPattern);
}
virtual ~txPattern()
{
MOZ_COUNT_DTOR(txPattern);
}
/*
* Determines whether this Pattern matches the given node.
*/