summaryrefslogtreecommitdiff
path: root/chart2/source/inc/RegressionCalculationHelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/inc/RegressionCalculationHelper.hxx')
-rw-r--r--chart2/source/inc/RegressionCalculationHelper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/chart2/source/inc/RegressionCalculationHelper.hxx b/chart2/source/inc/RegressionCalculationHelper.hxx
index e4b94818bfb5..60ab60ddf621 100644
--- a/chart2/source/inc/RegressionCalculationHelper.hxx
+++ b/chart2/source/inc/RegressionCalculationHelper.hxx
@@ -63,7 +63,7 @@ tDoubleVectorPair
class isValid : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||
@@ -74,7 +74,7 @@ public:
class isValidAndXPositive : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||
@@ -86,7 +86,7 @@ public:
class isValidAndYPositive : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||
@@ -98,7 +98,7 @@ public:
class isValidAndYNegative : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||
@@ -110,7 +110,7 @@ public:
class isValidAndBothPositive : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||
@@ -123,7 +123,7 @@ public:
class isValidAndXPositiveAndYNegative : public std::binary_function< double, double, bool >
{
public:
- inline bool operator()( double x, double y )
+ bool operator()( double x, double y )
{ return ! ( ::rtl::math::isNan( x ) ||
::rtl::math::isNan( y ) ||
::rtl::math::isInf( x ) ||