diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-11-13 17:59:52 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-11-13 18:01:04 +0100 |
commit | f115b0cf1b23baf18aa56866aa7f15d5a5991c37 (patch) | |
tree | c88aed765bba026f23c9990bd9b51a24a7f214d3 /sc | |
parent | 38357ee010e9f22bc00080e603880cf82c74da48 (diff) |
underscores are reserved
Change-Id: Iee60389ccc9e348db6ed00e48e32b1e86f17b530
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/inc/arraysumfunctor.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/inc/arraysumfunctor.hxx b/sc/source/core/inc/arraysumfunctor.hxx index 34ccd81aad5b..e9ef4041cde6 100644 --- a/sc/source/core/inc/arraysumfunctor.hxx +++ b/sc/source/core/inc/arraysumfunctor.hxx @@ -13,7 +13,7 @@ #include <tools/cpuid.hxx> -#if defined(__LO_SSE2_AVAILABLE__) +#if defined(LO_SSE2_AVAILABLE) #include <emmintrin.h> #endif @@ -70,7 +70,7 @@ public: private: inline double executeSSE2(size_t& i, const double* pCurrent) const { -#if defined(__LO_SSE2_AVAILABLE__) +#if defined(LO_SSE2_AVAILABLE) double fSum = 0.0; size_t nRealSize = mnSize - i; size_t nUnrolledSize = nRealSize - (nRealSize % 8); |