diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/interpr3.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx index 7c46264f83e0..e1d7bf45db8e 100644 --- a/sc/source/core/tool/interpr3.cxx +++ b/sc/source/core/tool/interpr3.cxx @@ -39,7 +39,9 @@ using ::std::vector; using namespace formula; -#define MAX_COUNT_DOUBLE_FOR_SORT 100000 +/// Two columns of data should be sortable with GetSortArray() and QuickSort() +// This is an arbitrary limit. +#define MAX_COUNT_DOUBLE_FOR_SORT (MAXROWCOUNT * 2) const double ScInterpreter::fMaxGammaArgument = 171.624376956302; // found experimental const double fMachEps = ::std::numeric_limits<double>::epsilon(); |