Bug 1658210 - Follow-up to bug 1657609: Revert PARAM_BUFFER_COUNT back to 18 for Thunderbird. r=mccr8 a=Aryx DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D86489
This commit is contained in:
Jorg K 2020-08-09 18:14:50 +00:00
Родитель ab81b8552f
Коммит fe5b7cefc1
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -510,7 +510,11 @@ static_assert(sizeof(nsXPTMethodInfo) == 8, "wrong size");
// code from xptcodegen.py to verify that decision. It is therefore also the
// maximum number of stack allocated nsXPTCMiniVariant structures for argument
// passing purposes in PrepareAndDispatch implementations.
#define PARAM_BUFFER_COUNT 14
#if defined(MOZ_THUNDERBIRD) || defined(MOZ_SUITE)
# define PARAM_BUFFER_COUNT 18
#else
# define PARAM_BUFFER_COUNT 14
#endif
/**
* A nsXPTConstantInfo is used to describe a single interface constant.