diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 11:28:41 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-13 16:44:11 +0100 |
commit | fd3ae880bc267446dc27adf678801ae99a885fe3 (patch) | |
tree | ec4367afb2fdf43ec6332d0aa4cf1dcec0d30a9b /sccomp | |
parent | adab3341788f4e51e075c469f925959d865b1769 (diff) |
Move OSL_ENSURE(false,...) to OSL_FAIL(...)
Diffstat (limited to 'sccomp')
-rw-r--r-- | sccomp/source/solver/solver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sccomp/source/solver/solver.cxx b/sccomp/source/solver/solver.cxx index 101e29bd891d..7b5cce7f8d26 100644 --- a/sccomp/source/solver/solver.cxx +++ b/sccomp/source/solver/solver.cxx @@ -470,7 +470,7 @@ void SAL_CALL SolverComponent::solve() throw(uno::RuntimeException) case sheet::SolverConstraintOperator_GREATER_EQUAL: nConstrType = GE; break; case sheet::SolverConstraintOperator_EQUAL: nConstrType = EQ; break; default: - OSL_ENSURE( false, "unexpected enum type" ); + OSL_FAIL( "unexpected enum type" ); } add_constraint( lp, pValues, nConstrType, fRightValue ); |