mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Fix harmless compiler warning seen with MSVC.
FossilOrigin-Name: 73a82114733af2a316f20eb8578badef307d14286c6ec03197744a6793425161
This commit is contained in:
@@ -382,6 +382,9 @@ static LONGDOUBLE_TYPE sqlite3Pow10(int E){
|
||||
** returns FALSE but it still converts the prefix and writes the result
|
||||
** into *pResult.
|
||||
*/
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(disable : 4756)
|
||||
#endif
|
||||
int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){
|
||||
#ifndef SQLITE_OMIT_FLOATING_POINT
|
||||
int incr;
|
||||
@@ -569,6 +572,9 @@ do_atof_calc:
|
||||
return !sqlite3Atoi64(z, pResult, length, enc);
|
||||
#endif /* SQLITE_OMIT_FLOATING_POINT */
|
||||
}
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(default : 4756)
|
||||
#endif
|
||||
|
||||
/*
|
||||
** Compare the 19-character string zNum against the text representation
|
||||
|
||||
Reference in New Issue
Block a user