Commit e0179ee1 authored by vitaut's avatar vitaut

Fix a warning and remove extra newline

parent e567fe69
...@@ -685,7 +685,7 @@ class BasicCharTraits { ...@@ -685,7 +685,7 @@ class BasicCharTraits {
#else #else
typedef Char *CharPtr; typedef Char *CharPtr;
#endif #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> template <typename Char>
...@@ -1624,7 +1624,6 @@ inline StrFormatSpec<wchar_t> pad( ...@@ -1624,7 +1624,6 @@ inline StrFormatSpec<wchar_t> pad(
return StrFormatSpec<wchar_t>(str, width, fill); return StrFormatSpec<wchar_t>(str, width, fill);
} }
namespace internal { namespace internal {
template <typename Char> template <typename Char>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment