diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-16 10:31:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-17 08:22:41 +0200 |
commit | 7125c6798f94a8b7345372ba36dbabd89bab8820 (patch) | |
tree | 00c4675657641c9037309df3c38735ec85df4b64 /connectivity/source/inc | |
parent | 790a32e2d22e48d5eb3463febf04874d8ae11782 (diff) |
loplugin:useuniqueptr in connectivity/file
Change-Id: I39c3b164c78a10f7a499974db3690d062dc59753
Reviewed-on: https://gerrit.libreoffice.org/59223
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r-- | connectivity/source/inc/file/fcomp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/inc/file/fcomp.hxx b/connectivity/source/inc/file/fcomp.hxx index bc1b452e1915..5b290c2f7212 100644 --- a/connectivity/source/inc/file/fcomp.hxx +++ b/connectivity/source/inc/file/fcomp.hxx @@ -31,7 +31,7 @@ namespace connectivity class OCode; class OOperand; class OSQLAnalyzer; - typedef std::vector<OCode*> OCodeList; + typedef std::vector<std::unique_ptr<OCode>> OCodeList; class OPredicateCompiler final : public ::salhelper::SimpleReferenceObject { |