diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-21 11:40:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-21 21:48:25 +0200 |
commit | 697e9f3cc9cb3309bf7e22bc39057ff720f1d1b3 (patch) | |
tree | 5d625bab6fc581e65a42912527e905bedef9a572 /sc/inc/table.hxx | |
parent | 603552c209f8652aa23a688b36d4a2abac933717 (diff) |
pass sc::ColumnIterator by value
no need to allocate on heap
Change-Id: Ie0f3fa39092083b9c30f3e769bb65fa975150021
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119312
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index 1f68937f87d2..6ecc0746d7b5 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -35,6 +35,7 @@ #include "document.hxx" #include "drwlayer.hxx" +#include <optional> #include <set> #include <memory> @@ -1061,7 +1062,7 @@ public: void TransferCellValuesTo( const SCCOL nCol, SCROW nRow, size_t nLen, sc::CellValues& rDest ); void CopyCellValuesFrom( const SCCOL nCol, SCROW nRow, const sc::CellValues& rSrc ); - std::unique_ptr<sc::ColumnIterator> GetColumnIterator( SCCOL nCol, SCROW nRow1, SCROW nRow2 ) const; + std::optional<sc::ColumnIterator> GetColumnIterator( SCCOL nCol, SCROW nRow1, SCROW nRow2 ) const; bool EnsureFormulaCellResults( const SCCOL nCol1, SCROW nRow1, const SCCOL nCol2, SCROW nRow2, bool bSkipRunning = false ); |