From e0179ee19003ac33906c898482ef644a94176b22 Mon Sep 17 00:00:00 2001 From: vitaut Date: Fri, 4 Dec 2015 17:52:36 -0800 Subject: [PATCH] Fix a warning and remove extra newline --- format.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/format.h b/format.h index a0b49ba0e4a3..5d3af4d3c07d 100644 --- a/format.h +++ b/format.h @@ -685,7 +685,7 @@ class BasicCharTraits { #else typedef Char *CharPtr; #endif - static Char cast(wchar_t value) { return static_cast(value); } + static Char cast(int value) { return static_cast(value); } }; template @@ -1624,7 +1624,6 @@ inline StrFormatSpec pad( return StrFormatSpec(str, width, fill); } - namespace internal { template