summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-06 18:32:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-06 18:32:59 +0200
commitb6fb8399524fecc9d8714328d65cee5e75027dd7 (patch)
treeaf1b75612cd04bbd25e1c672b3303d237e31eb3c /connectivity
parent0791c51c724b07b52b6bf37994cbd3659cfc40e5 (diff)
Improved loplugin:redundantcast, static_cast on arithmetic types: connectivity
Change-Id: I8156e528b675c5f27c5d6903f17cb62d228d1488
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/commontools/FValue.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 71679b253827..721ca95d9a8c 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -1603,7 +1603,7 @@ sal_uInt64 ORowSetValue::getULong() const
case DataType::DECIMAL:
case DataType::NUMERIC:
case DataType::LONGVARCHAR:
- nRet = static_cast<sal_uInt64>(OUString(m_aValue.m_pString).toUInt64());
+ nRet = OUString(m_aValue.m_pString).toUInt64();
break;
case DataType::FLOAT:
nRet = sal_uInt64(m_aValue.m_nFloat);