fix && || warning in enable-debug
This commit is contained in:
parent
68e6d707ae
commit
d4ad983a0e
1 changed files with 2 additions and 2 deletions
|
@ -611,8 +611,8 @@ sal_Bool OFlatTable::fetchRow(OValueRefRow& _rRow,const OSQLColumns & _rCols,sal
|
|||
sal_Unicode* pData = aStrConverted.AllocBuffer(aStr.Len());
|
||||
const sal_Unicode* pStart = pData;
|
||||
|
||||
OSL_ENSURE(cDecimalDelimiter && nType != DataType::INTEGER ||
|
||||
!cDecimalDelimiter && nType == DataType::INTEGER,
|
||||
OSL_ENSURE((cDecimalDelimiter && nType != DataType::INTEGER) ||
|
||||
(!cDecimalDelimiter && nType == DataType::INTEGER),
|
||||
"FalscherTyp");
|
||||
|
||||
// In Standard-Notation (DezimalPUNKT ohne Tausender-Komma) umwandeln:
|
||||
|
|
Loading…
Reference in a new issue