Module Name:    src
Committed By:   martin
Date:           Mon Feb 17 12:06:15 UTC 2014

Modified Files:
        src/external/public-domain/sqlite/dist: sqlite3.c

Log Message:
Fix bogus #ifdef __vax__


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/public-domain/sqlite/dist/sqlite3.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/public-domain/sqlite/dist/sqlite3.c
diff -u src/external/public-domain/sqlite/dist/sqlite3.c:1.9 src/external/public-domain/sqlite/dist/sqlite3.c:1.10
--- src/external/public-domain/sqlite/dist/sqlite3.c:1.9	Sun Feb 16 18:09:43 2014
+++ src/external/public-domain/sqlite/dist/sqlite3.c	Mon Feb 17 12:06:15 2014
@@ -22014,8 +22014,8 @@ do_atof_calc:
     /* if exponent, scale significand as appropriate
     ** and store in result. */
     if( e ){
-#ifndef __vax__
       LONGDOUBLE_TYPE scale = 1.0;
+#ifndef __vax__
       /* attempt to handle extremely small/large numbers better */
       if( e>307 && e<342 ){
         while( e%308 ) { scale *= 1.0e+1; e -= 1; }

Reply via email to