diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-22 15:55:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-30 08:50:31 +0200 |
commit | 2ccde70d60d3a5074faf49260e8fe0ccdb91ff26 (patch) | |
tree | 82555c2aac7ca37c30e1084a7a8069c71fc11fbc /basic/source/comp | |
parent | 61ff1d919e317947c769e61eeda7f1bb8132f273 (diff) |
teach redundantcast plugin about functional casts
Change-Id: Iac8ccd17d9e46ebb2cb55db7adb06c469bbd4ea0
Reviewed-on: https://gerrit.libreoffice.org/37910
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/comp')
-rw-r--r-- | basic/source/comp/scanner.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx index 65c8e3f6c4e6..f6c87116dc68 100644 --- a/basic/source/comp/scanner.cxx +++ b/basic/source/comp/scanner.cxx @@ -121,19 +121,19 @@ static SbxDataType GetSuffixType( sal_Unicode c ) switch (c) { case '%': - return SbxDataType(SbxINTEGER); + return SbxINTEGER; case '&': - return SbxDataType(SbxLONG); + return SbxLONG; case '!': - return SbxDataType(SbxSINGLE); + return SbxSINGLE; case '#': - return SbxDataType(SbxDOUBLE); + return SbxDOUBLE; case '@': - return SbxDataType(SbxCURRENCY); + return SbxCURRENCY; case '$': - return SbxDataType(SbxSTRING); + return SbxSTRING; default: - return SbxDataType(SbxVARIANT); + return SbxVARIANT; } } |