Index: third_party/sqlite/amalgamation/sqlite3.c |
diff --git a/third_party/sqlite/amalgamation/sqlite3.c b/third_party/sqlite/amalgamation/sqlite3.c |
index 9ff765248d1a605327156147b21a53d055d7cbdf..3a8d7702e3247a137137a5786da15defe923e885 100644 |
--- a/third_party/sqlite/amalgamation/sqlite3.c |
+++ b/third_party/sqlite/amalgamation/sqlite3.c |
@@ -33323,7 +33323,7 @@ static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ |
return rc; |
} |
-#if 0 /* Not used */ |
+#ifndef SQLITE_OMIT_DEPRECATED |
/* |
** Find the current time (in Universal Coordinated Time). Write the |
** current time and date as a Julian Day number into *prNow and |
@@ -33341,7 +33341,7 @@ static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ |
# define unixCurrentTime 0 |
#endif |
-#if 0 /* Not used */ |
+#ifndef SQLITE_OMIT_DEPRECATED |
/* |
** We added the xGetLastError() method with the intention of providing |
** better low-level error messages when operating-system problems come up |