diff --git a/include/fc/container/zeroed_array.hpp b/include/fc/container/zeroed_array.hpp index 0f91a0f..df1d530 100644 --- a/include/fc/container/zeroed_array.hpp +++ b/include/fc/container/zeroed_array.hpp @@ -72,3 +72,9 @@ 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 > > {}; +}