From 31b0be0f21479323408e128f2e8a1a795e037e74 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 28 May 2020 13:18:41 +0200 Subject: improve pahole script and pack a few classes (*) fix: I was substracting the padding space instead of adding it when calculating how much free space we had to improve. (*) sort input data, so we process structs located in the same DSO together, which reduces GDB's memory usage (*) handle another error condition, where gdbs output is sufficiently mixed up that we miss the end of commands terminator Change-Id: Ic4bb92b736f38a2b3d90e4a14485152b7f869b43 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95041 Tested-by: Jenkins Reviewed-by: Noel Grandin --- editeng/source/outliner/paralist.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editeng') diff --git a/editeng/source/outliner/paralist.cxx b/editeng/source/outliner/paralist.cxx index 4e03e24c2438..1e560b56ca68 100644 --- a/editeng/source/outliner/paralist.cxx +++ b/editeng/source/outliner/paralist.cxx @@ -54,8 +54,8 @@ Paragraph::Paragraph( sal_Int16 nDDepth ) } Paragraph::Paragraph( const ParagraphData& rData ) -: nFlags( ParaFlag::NONE ) -, aBulSize( -1, -1) +: aBulSize( -1, -1) +, nFlags( ParaFlag::NONE ) , bVisible( true ) { nDepth = rData.nDepth; -- cgit