зеркало из https://github.com/mozilla/pjs.git
Bug 205703: Reduce binarysize by not inlineing ExprResult::Release.
r/sr=peterv
This commit is contained in:
Родитель
d2269edf24
Коммит
83b00ebe68
|
@ -62,17 +62,8 @@ public:
|
|||
{
|
||||
++mRefCnt;
|
||||
}
|
||||
void Release()
|
||||
{
|
||||
if (--mRefCnt == 0) {
|
||||
if (mRecycler) {
|
||||
mRecycler->recycle(this);
|
||||
}
|
||||
else {
|
||||
delete this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Release(); // Implemented in txResultRecycler.cpp
|
||||
|
||||
/**
|
||||
* Returns the type of ExprResult represented
|
||||
|
|
|
@ -286,3 +286,16 @@ txResultRecycler::getNonSharedNodeSet(NodeSet* aNodeSet, NodeSet** aResult)
|
|||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
void
|
||||
txAExprResult::Release()
|
||||
{
|
||||
if (--mRefCnt == 0) {
|
||||
if (mRecycler) {
|
||||
mRecycler->recycle(this);
|
||||
}
|
||||
else {
|
||||
delete this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче