diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-06 08:33:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-06 13:00:56 +0200 |
commit | 4f7b2ca221efe9f198994c98ac4603c9e4688f11 (patch) | |
tree | e97f4e99d774af4ddfde25e311d07eb9710a57fa /sc/inc | |
parent | 330a022e8bcd413d0bdc0b45916503ddfee5d0cc (diff) |
loplugin:unusedfields in sc
found a couple more by running
make build-nocheck
to exclude testing code
Also, teach unusedfields loplugin about operator<<, since
referring to a field in an ostream operator<< does not indicate a
real use, it's normally for debugging
Change-Id: I3dce22bf5afda2fd09e01de9bf1d0ef85e535aa8
Reviewed-on: https://gerrit.libreoffice.org/39625
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/types.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sc/inc/types.hxx b/sc/inc/types.hxx index 4cfa434c21cb..51898c291fde 100644 --- a/sc/inc/types.hxx +++ b/sc/inc/types.hxx @@ -104,7 +104,6 @@ struct MultiDataCellState SCCOL mnCol1; //< first non-empty column SCROW mnRow1; //< first non-empty row - SCTAB mnTab1; //< first non-empty sheet MultiDataCellState(); MultiDataCellState( StateType eState ); |