| Index: third_party/sqlite/sqlite-src-3100200/ext/icu/icu.c
|
| diff --git a/third_party/sqlite/src/ext/icu/icu.c b/third_party/sqlite/sqlite-src-3100200/ext/icu/icu.c
|
| similarity index 99%
|
| copy from third_party/sqlite/src/ext/icu/icu.c
|
| copy to third_party/sqlite/sqlite-src-3100200/ext/icu/icu.c
|
| index 1ce1e0c806a0976fdd44c4c9e39110e496a41a6e..a2ff49274ceaefe6600691432518d0a459fe3eea 100644
|
| --- a/third_party/sqlite/src/ext/icu/icu.c
|
| +++ b/third_party/sqlite/sqlite-src-3100200/ext/icu/icu.c
|
| @@ -83,7 +83,6 @@ static int icuLikeCompare(
|
| /* Read (and consume) the next character from the input pattern. */
|
| UChar32 uPattern;
|
| U8_NEXT_UNSAFE(zPattern, iPattern, uPattern);
|
| - assert(uPattern!=0);
|
|
|
| /* There are now 4 possibilities:
|
| **
|
| @@ -422,6 +421,7 @@ static void icuLoadCollation(
|
| int rc; /* Return code from sqlite3_create_collation_x() */
|
|
|
| assert(nArg==2);
|
| + (void)nArg; /* Unused parameter */
|
| zLocale = (const char *)sqlite3_value_text(apArg[0]);
|
| zName = (const char *)sqlite3_value_text(apArg[1]);
|
|
|
|
|