summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2011-03-24 11:13:10 +0100
committerVladimir Glazunov <vg@openoffice.org>2011-03-24 11:13:10 +0100
commit9823cbf7faac2ef54b29e453a8fd03bb7d987c6b (patch)
tree05da0812ede8cc3ef1ea7c391c051a7fd5fb5a3e
parent707babe243f2f80572504b0d98d35db1c43a9da6 (diff)
#i10000# fix for Solaris warnings
Notes
split repo tag: libs-core_ooo/DEV300_m104
-rw-r--r--connectivity/source/commontools/FValue.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 5ea0e601a9c3..6f65547736d9 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -795,7 +795,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const
case DataType::DOUBLE:
case DataType::REAL:
return getDouble() == _rRH.getDouble();
- break;
default:
switch(_rRH.m_eTypeKind)
{
@@ -803,7 +802,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const
case DataType::DOUBLE:
case DataType::REAL:
return getDouble() == _rRH.getDouble();
- break;
default:
break;
}
@@ -827,7 +825,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const
::rtl::OUString aVal1(m_aValue.m_pString);
::rtl::OUString aVal2(_rRH.m_aValue.m_pString);
return aVal1 == aVal2;
- break;
}
default:
if ( m_bSigned != _rRH.m_bSigned )