Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/public-domain/sqlite/dist remove stray line



details:   https://anonhg.NetBSD.org/src/rev/26ba90a38a66
branches:  trunk
changeset: 446836:26ba90a38a66
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Dec 22 03:22:19 2018 +0000

description:
remove stray line

diffstat:

 external/public-domain/sqlite/dist/sqlite3.c |  3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 6e8c81768e33 -r 26ba90a38a66 external/public-domain/sqlite/dist/sqlite3.c
--- a/external/public-domain/sqlite/dist/sqlite3.c      Sat Dec 22 00:36:32 2018 +0000
+++ b/external/public-domain/sqlite/dist/sqlite3.c      Sat Dec 22 03:22:19 2018 +0000
@@ -30570,7 +30570,6 @@
       LONGDOUBLE_TYPE scale = 1;
       /* 1.0e+22 is the largest power of 10 than can be 
       ** represented exactly. */
-         LONGDOUBLE_TYPE scale = sqlite3Pow10(e-308);
       while( e%22 ) { scale *= 1.0e+1; e -= 1; }
       while( e>0 ) { scale *= 1.0e+22; e -= 22; }
       if( esign<0 ){
@@ -185410,7 +185409,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: sqlite3.c,v 1.17 2018/12/19 22:21:13 christos Exp $
+** $Id: sqlite3.c,v 1.18 2018/12/22 03:22:19 christos Exp $
 **
 ** This file implements an integration between the ICU library 
 ** ("International Components for Unicode", an open-source library 



Home | Main Index | Thread Index | Old Index