diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-18 21:35:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 09:06:52 +0100 |
commit | 19ae20096aa1c35217753ffd3d903364047834ff (patch) | |
tree | 53e9f670342c8e234a39db9cd98e140645dc7f3b /svx/inc | |
parent | 950028c6e3b20ee686e47fdf990de89377aaf92a (diff) |
Some more loplugin:cstylecast: svx
Change-Id: I5eb4e1cae38decb293ea11f7cd4bfda0bad3afcb
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/xpolyimp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/inc/xpolyimp.hxx b/svx/inc/xpolyimp.hxx index 2b9bc67c13fe..aa0cf766c32b 100644 --- a/svx/inc/xpolyimp.hxx +++ b/svx/inc/xpolyimp.hxx @@ -48,7 +48,7 @@ public: { if ( bDeleteOldPoints ) { - delete[] (char*)pOldPointAry; + delete[] reinterpret_cast<char*>(pOldPointAry); bDeleteOldPoints = false; } } |