From 425f9eb00fc2fe5e5e4b4762c9d4ec52b7c77d1e Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Mon, 31 Jul 2017 17:41:42 +0000 Subject: [PATCH] ICU-13275 clear a clang warning introduced with the other warning fixes. X-SVN-Rev: 40300 --- icu4c/source/common/putil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/common/putil.cpp b/icu4c/source/common/putil.cpp index 1bfd2475228..bf12252bbf7 100644 --- a/icu4c/source/common/putil.cpp +++ b/icu4c/source/common/putil.cpp @@ -1069,7 +1069,7 @@ uprv_getWindowsTimeZone() U_CAPI const char* U_EXPORT2 uprv_tzname(int n) { - n; // Avoid unreferenced parameter warning. + (void)n; // Avoid unreferenced parameter warning. const char *tzid = NULL; #if U_PLATFORM_USES_ONLY_WIN32_API #if U_PLATFORM_HAS_WINUWP_API > 0