diff --git a/include/flatmemory/details/types/tuple.hpp b/include/flatmemory/details/types/tuple.hpp index 3053dc9..1eddbd9 100644 --- a/include/flatmemory/details/types/tuple.hpp +++ b/include/flatmemory/details/types/tuple.hpp @@ -75,10 +75,14 @@ template class Builder> : public IBuilder>> { private: - template + template class TupleEntry { - static_assert(std::false_type::value, "Builder>::TupleEntry(...): Expected usage of overload."); + TupleEntry() + { + std::cout << "Instantiating get_element with type: " << typeid(T).name() << std::endl; + static_assert(std::false_type::value, "Builder>::TupleEntry(...): Expected usage of overload."); + } }; template