replace spaces with tabs

This commit is contained in:
Treb Connell 2015-09-24 19:01:55 -07:00
parent b324019c24
commit d8388e5aef

View File

@ -75,7 +75,7 @@ namespace details
class coordinate_facade
{
static_assert(std::is_integral<ValueType>::value
&& !std::is_signed<ValueType>::value
&& !std::is_signed<ValueType>::value
&& sizeof(ValueType) <= sizeof(size_t), "ValueType must be unsigned integral type!");
static_assert(Rank > 0, "Rank must be greater than 0!");
@ -1630,9 +1630,9 @@ namespace details
template <typename ValueType, typename SizeType>
struct array_view_options
{
static_assert(std::is_integral<SizeType>::value
&& !std::is_signed<SizeType>::value
&& sizeof(SizeType) <= sizeof(size_t), "size_type must be unsigned integral type!");
static_assert(std::is_integral<ValueType>::value
&& !std::is_signed<ValueType>::value
&& sizeof(ValueType) <= sizeof(size_t), "ValueType must be unsigned integral type!");
struct array_view_traits
{