From 6e22341d9f44665b81248bd0fcc2d50394c6a59a Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Fri, 1 Nov 2019 15:14:46 -0500 Subject: [PATCH] Fix warning in zeroed_array.hpp Only one template declaration is needed here, I think. Clang gives many, many warnings over it. --- include/fc/container/zeroed_array.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fc/container/zeroed_array.hpp b/include/fc/container/zeroed_array.hpp index df1d530..14bd116 100644 --- a/include/fc/container/zeroed_array.hpp +++ b/include/fc/container/zeroed_array.hpp @@ -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 > > {}; }