summaryrefslogtreecommitdiff
path: root/sc/source/core/data/compressedarray.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-08-10 22:50:25 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-08-10 23:08:44 +0200
commit07090cac4251e254b21676b77742c07f28cccaf4 (patch)
treea40a7a3125ebdc682dbf81e0ef3001949cac14c0 /sc/source/core/data/compressedarray.cxx
parent9b85b65fb5367b4a5d1c2bd1eed14e3bafe45405 (diff)
sc: this appears to be unused
Change-Id: I22a759ef55a46dc560ebe5f802c937f1d47bf645
Diffstat (limited to 'sc/source/core/data/compressedarray.cxx')
-rw-r--r--sc/source/core/data/compressedarray.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/sc/source/core/data/compressedarray.cxx b/sc/source/core/data/compressedarray.cxx
index 27388097349e..baa8a8267c9b 100644
--- a/sc/source/core/data/compressedarray.cxx
+++ b/sc/source/core/data/compressedarray.cxx
@@ -456,35 +456,8 @@ A ScBitMaskCompressedArray<A,D>::GetLastAnyBitAccess( A nStart,
return nEnd;
}
-
-// === ScCompressedArrayIterator =============================================
-
-template< typename A, typename D >
-template< typename X >
-void ScCompressedArrayIterator<A,D>::Follow(
- const ScCompressedArrayIterator<A,X>& rIter )
-{
- nCurrent = rIter.GetPos();
- if (GetRangeStart() <= nCurrent && nCurrent <= GetRangeEnd())
- ; // nothing
- else if (nCurrent > GetRangeEnd())
- {
- A nPos = nCurrent; // nCurrent gets changed in NextRange()
- bool bAdv;
- do
- {
- bAdv = NextRange();
- } while (bAdv && GetRangeEnd() < nPos);
- nCurrent = nPos;
- }
- else
- nIndex = rArray.Search( nCurrent);
-}
-
-
// === Force instantiation of specializations ================================
-template class ScCompressedArray< SCROW, sal_uInt16>; // heights, base class
template class ScCompressedArray< SCROW, sal_uInt8>; // flags, base class
template class ScBitMaskCompressedArray< SCROW, sal_uInt8>; // flags