diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-12 10:52:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-12 12:17:24 +0200 |
commit | f1bd6e802a1671c4b923124b33064b7803a5dbb6 (patch) | |
tree | d303a52764c7038b72f4df1d3f67040a7de1e0c9 /include | |
parent | 0652bc404c1a8dedda085a4753b412c8c0e9ea6c (diff) |
clang:optin.performance.Padding
Excessive padding in 'struct chart::TickInfo' (11 padding bytes, where 3
is optimal).
Excessive padding in 'class EscherBlibEntry' (10 padding bytes, where 2
is optimal).
Excessive padding in 'struct oox::drawingml::ConditionAttr' (8 padding
bytes, where 0 is optimal).
Excessive padding in 'struct oox::drawingml::Constraint' (12 padding
bytes, where 4 is optimal).
Excessive padding in 'struct (anonymous namespace)::Number' (10 padding
bytes, where 2 is optimal).
Change-Id: If7573afa8a794497c9a2bf1c7c15e8f11ff11407
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121993
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/escherex.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx index 9ab3d891da2a..a4625984308b 100644 --- a/include/filter/msfilter/escherex.hxx +++ b/include/filter/msfilter/escherex.hxx @@ -525,6 +525,9 @@ class EscherBlibEntry friend class EscherGraphicProvider; friend class EscherEx; + MapMode maPrefMapMode; + Size maPrefSize; + sal_uInt32 mnIdentifier[ 4 ]; sal_uInt32 mnPictureOffset; // offset to the graphic in PictureStreams sal_uInt32 mnSize; // size of real graphic @@ -534,9 +537,6 @@ class EscherBlibEntry ESCHER_BlibType meBlibType; - Size maPrefSize; - MapMode maPrefMapMode; - bool mbIsEmpty; bool mbIsNativeGraphicPossible; |