mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
Silence other fallbacks
This removes Clang warnings
This commit is contained in:
parent
8769c06350
commit
a983318501
1 changed files with 2 additions and 0 deletions
|
@ -817,6 +817,7 @@ static wchar_t *wcsdup_fallback(const wchar_t *in)
|
|||
return out;
|
||||
}
|
||||
|
||||
__attribute__((unused))
|
||||
static int wcscasecmp_fallback(const wchar_t *a, const wchar_t *b)
|
||||
{
|
||||
if (*a == 0)
|
||||
|
@ -834,6 +835,7 @@ static int wcscasecmp_fallback(const wchar_t *a, const wchar_t *b)
|
|||
return wcscasecmp_fallback(a+1,b+1);
|
||||
}
|
||||
|
||||
__attribute__((unused))
|
||||
static int wcsncasecmp_fallback(const wchar_t *a, const wchar_t *b, size_t count)
|
||||
{
|
||||
if (count == 0)
|
||||
|
|
Loading…
Reference in a new issue