summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools/FValue.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools/FValue.cxx')
-rw-r--r--connectivity/source/commontools/FValue.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index ddcafc06fc91..88add8593e30 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -2157,7 +2157,7 @@ void ORowSetValue::impl_fill( const sal_Int32 _nType, sal_Bool _bNullable, const
setTypeKind(DataType::OTHER);
break;
default:
- OSL_ENSURE( false, "ORowSetValue::fill: unsupported type!" );
+ OSL_FAIL( "ORowSetValue::fill: unsupported type!" );
(*this) = _rValueSource.getObject();
break;
}
@@ -2275,7 +2275,7 @@ void ORowSetValue::fill(const Any& _rValue)
if ( _rValue >>= aDummy )
(*this) = aDummy;
else
- OSL_ENSURE( false, "ORowSetValue::fill: unsupported sequence type!" );
+ OSL_FAIL( "ORowSetValue::fill: unsupported sequence type!" );
break;
}
@@ -2297,7 +2297,7 @@ void ORowSetValue::fill(const Any& _rValue)
(*this) = aDateTime;
}
else
- OSL_ENSURE( false, "ORowSetValue::fill: unsupported structure!" );
+ OSL_FAIL( "ORowSetValue::fill: unsupported structure!" );
break;
}