Fix warning in zeroed_array.hpp

Only one template declaration is needed here, I think. Clang gives many, many warnings over it.
This commit is contained in:
Nathan Hourt 2019-11-01 15:14:46 -05:00 committed by GitHub
parent dd257e5c0b
commit 6e22341d9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,6 @@ namespace fc {
}
namespace std {
template<>
template< typename T, size_t N >
class tuple_size< fc::zero_initialized_array< T, N > > : public tuple_size< array< T, N > > {};
}