Removed trailing spaces

This commit is contained in:
John Wellbelove 2016-12-28 12:41:08 +00:00
parent d58f675722
commit 4974d578e0

View File

@ -245,9 +245,9 @@ namespace etl
template <> struct make_signed<wchar_t>
{
typedef typename etl::conditional<sizeof(wchar_t) == sizeof(int16_t),
typedef typename etl::conditional<sizeof(wchar_t) == sizeof(int16_t),
int16_t,
etl::conditional<sizeof(wchar_t) == sizeof(int32_t),
etl::conditional<sizeof(wchar_t) == sizeof(int32_t),
int32_t,
void>::type>::type type;
};