diff options
author | Arnaud Versini <arnaud.versini@libreoffice.org> | 2020-09-06 15:37:46 +0200 |
---|---|---|
committer | Arnaud Versini <arnaud.versini@libreoffice.org> | 2020-09-06 18:27:43 +0200 |
commit | 1d67beea593fa43f0bd782c0ce15b6a85042e33c (patch) | |
tree | 9c3ec98682821347cf870d4af9da875ad6144c06 /basic/source/comp/buffer.cxx | |
parent | b5fcfb7ff9c02b1aa0578bb52da2bd7a8ade06f0 (diff) |
BASIC : useless std::unique_ptr initialisation
Change-Id: I841cbb2bad3af5f6f6212962d7f15436d5e7bead
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102105
Tested-by: Jenkins
Reviewed-by: Arnaud Versini <arnaud.versini@libreoffice.org>
Diffstat (limited to 'basic/source/comp/buffer.cxx')
-rw-r--r-- | basic/source/comp/buffer.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/basic/source/comp/buffer.cxx b/basic/source/comp/buffer.cxx index 3d8f6623c525..bbc3c351f5ae 100644 --- a/basic/source/comp/buffer.cxx +++ b/basic/source/comp/buffer.cxx @@ -33,7 +33,6 @@ SbiBuffer::SbiBuffer( SbiParser* p, short n ) pParser = p; n = ( (n + 15 ) / 16 ) * 16; if( !n ) n = 16; - pBuf = nullptr; pCur = nullptr; nInc = n; nSize = |