diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-19 18:39:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-20 10:46:14 +0100 |
commit | 09dc5c51fa0de04e110190c08678758451b7f9c5 (patch) | |
tree | 165dc2951c55cc9831019daedac8e862a4fc1d55 /sc | |
parent | fc528a468061e165ee29f0ca450245331da3ef93 (diff) |
RowInfo copy ctor was presumably killed in error
...by 3c6b7c8b43d23dd7de46c02ee2cfa5bd2a97f168 "loplugin: unnecessary destructor
sc"
Change-Id: I67868187565cb25b40a6380298deaefca0d76b0b
Reviewed-on: https://gerrit.libreoffice.org/48218
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/fillinfo.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx index 53de02b0eca5..e21a11c9a088 100644 --- a/sc/inc/fillinfo.hxx +++ b/sc/inc/fillinfo.hxx @@ -174,6 +174,7 @@ const SCCOL SC_ROTMAX_NONE = SCCOL_MAX; struct RowInfo { RowInfo() = default; + RowInfo(const RowInfo&) = delete; const RowInfo& operator=(const RowInfo&) = delete; CellInfo* pCellInfo; |