Fix a warning and remove extra newline

This commit is contained in:
vitaut 2015-12-04 17:52:36 -08:00
parent e567fe6960
commit e0179ee190

View File

@ -685,7 +685,7 @@ class BasicCharTraits {
#else
typedef Char *CharPtr;
#endif
static Char cast(wchar_t value) { return static_cast<Char>(value); }
static Char cast(int value) { return static_cast<Char>(value); }
};
template <typename Char>
@ -1624,7 +1624,6 @@ inline StrFormatSpec<wchar_t> pad(
return StrFormatSpec<wchar_t>(str, width, fill);
}
namespace internal {
template <typename Char>