template Vectray::FixedStore::~FixedStore()

in code/include/swoc/Vectray.h [257:261]


template <typename T, size_t N, class A> Vectray<T, N, A>::FixedStore::~FixedStore() {
  for (auto &item : this->span()) {
    std::destroy_at(std::addressof(item));
  }
}