diff --git a/contrib/epee/include/span.h b/contrib/epee/include/span.h index 01dc387d6..2ad733a2f 100644 --- a/contrib/epee/include/span.h +++ b/contrib/epee/include/span.h @@ -162,7 +162,6 @@ namespace epee { static_assert(!std::is_empty(), "empty types will not work -> sizeof == 1"); static_assert(std::is_standard_layout(), "type must have standard layout"); - static_assert(std::is_trivially_copyable(), "type must be trivially copyable"); static_assert(alignof(T) == 1, "type may have padding"); return {reinterpret_cast(std::addressof(src)), sizeof(T)}; }