From a9833185010d417f1ac990e04bd43909b0da0f36 Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Sun, 25 May 2014 12:47:36 +0200 Subject: [PATCH] Silence other fallbacks This removes Clang warnings --- fallback.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fallback.cpp b/fallback.cpp index e81b87029..8abb8e48a 100644 --- a/fallback.cpp +++ b/fallback.cpp @@ -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)