2010-03-25 13:52 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/common/expropt2.c
    ! fixed stupid c&p typo in timestamp optimization,
      many thanks to Mindaugas for the information about the bug.
This commit is contained in:
Przemyslaw Czerpak
2010-03-25 12:53:09 +00:00
parent ab16694f9f
commit fcaeda7db3
2 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-25 13:52 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/common/expropt2.c
! fixed stupid c&p typo in timestamp optimization,
many thanks to Mindaugas for the information about the bug.
2010-03-25 12:20 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbsetup.h
+ use FORCEINLINE defined in compiler header files

View File

@@ -445,8 +445,8 @@ static void hb_compExprReduceTimeStampPut( HB_EXPR_PTR pExpr, long lJulian, long
pExpr->value.asDate.lDate = lJulian;
pExpr->value.asDate.lTime = lMilliSec;
pExpr->ExprType = HB_ET_DATE;
pExpr->ValType = HB_EV_DATE;
pExpr->ExprType = HB_ET_TIMESTAMP;
pExpr->ValType = HB_EV_TIMESTAMP;
}
static void hb_compExprReduceTimeStampAdd( HB_EXPR_PTR pExpr, HB_EXPR_PTR pTimeStamp, double dValue )