summaryrefslogtreecommitdiff
path: root/sc/source/core/data/compressedarray.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:20:47 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:10 +0200
commit37e6631cc5d4147e9d0a4ebefbd0c9d2a8137d24 (patch)
tree060cf0aafda3f205b3e12508465a5403826d014d /sc/source/core/data/compressedarray.cxx
parented6b8a100c1aabb342573f252509573bbe124d29 (diff)
remove whitespace
Change-Id: Ib15413e73409cc33de01fa92a47b9d1237cfc4b2
Diffstat (limited to 'sc/source/core/data/compressedarray.cxx')
-rw-r--r--sc/source/core/data/compressedarray.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/source/core/data/compressedarray.cxx b/sc/source/core/data/compressedarray.cxx
index a14cd9d2bec9..234d96ba29dc 100644
--- a/sc/source/core/data/compressedarray.cxx
+++ b/sc/source/core/data/compressedarray.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "compressedarray.hxx"
#include "address.hxx"
@@ -36,7 +35,6 @@ ScCompressedArray<A,D>::ScCompressedArray( A nMaxAccessP, const D& rValue,
pData[0].nEnd = nMaxAccess;
}
-
template< typename A, typename D >
ScCompressedArray<A,D>::ScCompressedArray( A nMaxAccessP, const D* pDataArray,
size_t nDataCount )
@@ -63,14 +61,12 @@ ScCompressedArray<A,D>::ScCompressedArray( A nMaxAccessP, const D* pDataArray,
Resize( nCount);
}
-
template< typename A, typename D >
ScCompressedArray<A,D>::~ScCompressedArray()
{
delete[] pData;
}
-
template< typename A, typename D >
void ScCompressedArray<A,D>::Resize( size_t nNewLimit)
{
@@ -84,7 +80,6 @@ void ScCompressedArray<A,D>::Resize( size_t nNewLimit)
}
}
-
template< typename A, typename D >
size_t ScCompressedArray<A,D>::Search( A nAccess ) const
{
@@ -116,7 +111,6 @@ size_t ScCompressedArray<A,D>::Search( A nAccess ) const
return (bFound ? static_cast<size_t>(i) : (nAccess < 0 ? 0 : nCount-1));
}
-
template< typename A, typename D >
void ScCompressedArray<A,D>::SetValue( A nStart, A nEnd, const D& rValue )
{
@@ -243,7 +237,6 @@ void ScCompressedArray<A,D>::SetValue( A nStart, A nEnd, const D& rValue )
}
}
-
template< typename A, typename D >
void ScCompressedArray<A,D>::CopyFrom( const ScCompressedArray<A,D>& rArray, A nStart,
A nEnd, long nSourceDy )
@@ -263,7 +256,6 @@ void ScCompressedArray<A,D>::CopyFrom( const ScCompressedArray<A,D>& rArray, A n
}
}
-
template< typename A, typename D >
const D& ScCompressedArray<A,D>::Insert( A nStart, size_t nAccessCount )
{
@@ -286,7 +278,6 @@ const D& ScCompressedArray<A,D>::Insert( A nStart, size_t nAccessCount )
return rValue;
}
-
template< typename A, typename D >
void ScCompressedArray<A,D>::Remove( A nStart, size_t nAccessCount )
{
@@ -323,7 +314,6 @@ void ScCompressedArray<A,D>::Remove( A nStart, size_t nAccessCount )
pData[nCount-1].nEnd = nMaxAccess;
}
-
// === ScBitMaskCompressedArray ==============================================
template< typename A, typename D >
@@ -352,7 +342,6 @@ void ScBitMaskCompressedArray<A,D>::AndValue( A nStart, A nEnd,
} while (nIndex < this->nCount);
}
-
template< typename A, typename D >
void ScBitMaskCompressedArray<A,D>::OrValue( A nStart, A nEnd,
const D& rValueToOr )
@@ -379,7 +368,6 @@ void ScBitMaskCompressedArray<A,D>::OrValue( A nStart, A nEnd,
} while (nIndex < this->nCount);
}
-
template< typename A, typename D >
void ScBitMaskCompressedArray<A,D>::CopyFromAnded(
const ScBitMaskCompressedArray<A,D>& rArray, A nStart, A nEnd,