diff options
author | drh <drh@noemail.net> | 2020-02-07 01:12:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-02-07 01:12:53 +0000 |
commit | b48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e (patch) | |
tree | 4f85a82a3053870293425b7a994a155c874741a4 /src/util.c | |
parent | c84ad3185111e6f437fd89eb702614a232e0c76f (diff) | |
download | sqlite-b48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e.tar.gz sqlite-b48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e.zip |
Simplify the code by removing the unsupported and undocumented
SQLITE_HAS_CODEC compile-time option
FossilOrigin-Name: 5a877221ce90e7523059353a68650c5fdd28ed032807afc2f10afbfbf864bdfe
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c index 3e3a9244a..693759bff 100644 --- a/src/util.c +++ b/src/util.c @@ -1256,7 +1256,7 @@ u8 sqlite3HexToInt(int h){ return (u8)(h & 0xf); } -#if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC) +#if !defined(SQLITE_OMIT_BLOB_LITERAL) /* ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary ** value. Return a pointer to its binary value. Space to hold the @@ -1277,7 +1277,7 @@ void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){ } return zBlob; } -#endif /* !SQLITE_OMIT_BLOB_LITERAL || SQLITE_HAS_CODEC */ +#endif /* !SQLITE_OMIT_BLOB_LITERAL */ /* ** Log an error that is an API call on a connection pointer that should |