summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-01-28 18:44:37 +0200
committerTor Lillqvist <tml@collabora.com>2015-01-28 18:47:23 +0200
commit36941076bc245373423dec1a2422269e8492e548 (patch)
tree69e9b17c6bbb872e6904429c3dd451d2dab2cdba /sc
parent1ecf795ffaf8c63280ea92f776b53558b3227504 (diff)
Make phi() and integralPhi() static and public
Needed for the NORMDIST() OpenCL implementation test doc. Change-Id: I40f0d5d7ccf5963fa47d6648873ab23f8adf7aea
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/inc/interpre.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx
index ff7fb1184be9..094292a4fe72 100644
--- a/sc/source/core/inc/interpre.hxx
+++ b/sc/source/core/inc/interpre.hxx
@@ -737,12 +737,12 @@ void ScForecast();
void ScNoName();
void ScBadName();
// Statistics:
-double phi(double x);
-double integralPhi(double x);
double taylor(const double* pPolynom, sal_uInt16 nMax, double x);
double gauss(double x);
public:
+static SC_DLLPUBLIC double phi(double x);
+static SC_DLLPUBLIC double integralPhi(double x);
static SC_DLLPUBLIC double gaussinv(double x);
private: