summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-14 12:26:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-14 15:32:25 +0200
commite23363f51e5d24710b032b795e715ad91adee8c9 (patch)
tree5a45c8b882f883f2fc55549906e52958ec2811a9 /chart2
parentcfe2e4eb835c06b24adabd60c7a3fddbd3f4dbc9 (diff)
loplugin:unusedmethods
Change-Id: Ibd9f4757ec26da7acc645f33573ace3280e84834 Reviewed-on: https://gerrit.libreoffice.org/55788 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/inc/CommonConverters.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/chart2/source/inc/CommonConverters.hxx b/chart2/source/inc/CommonConverters.hxx
index 48fc21aa20db..d4a5b6ed19b6 100644
--- a/chart2/source/inc/CommonConverters.hxx
+++ b/chart2/source/inc/CommonConverters.hxx
@@ -197,20 +197,6 @@ css::uno::Sequence< T >
return aResult;
}
-template< typename T >
- std::vector< T >
- FlattenVector( const std::vector< std::vector< T > > & rVecVec )
-{
- typedef std::vector< T > tFlatVec;
- typedef std::vector< tFlatVec > tVecVec;
-
- tFlatVec aResult;
- typename tVecVec::const_iterator aOuterEnd( rVecVec.end());
- for( typename tVecVec::const_iterator aOuterIt( rVecVec.begin()); aOuterIt != aOuterEnd; ++aOuterIt )
- std::copy( aOuterIt->begin(), aOuterIt->end(), back_inserter( aResult ));
- return aResult;
-}
-
OOO_DLLPUBLIC_CHARTTOOLS
bool hasDoubleValue( const css::uno::Any& rAny );