diff --git a/src/corelib/plugin/qplugin.h b/src/corelib/plugin/qplugin.h index 61dff6ab53..30f5cbb92f 100644 --- a/src/corelib/plugin/qplugin.h +++ b/src/corelib/plugin/qplugin.h @@ -13,6 +13,8 @@ #include #include +#include + QT_BEGIN_NAMESPACE // Used up to Qt 6.2 @@ -42,10 +44,8 @@ struct QPluginMetaData template static constexpr void copy(OO (&out)[OSize], II (&in)[ISize]) { - // std::copy is not constexpr until C++20 static_assert(OSize <= ISize, "Output would not be fully initialized"); - for (size_t i = 0; i < OSize; ++i) - out[i] = in[i]; + q20::copy_n(in, OSize, out); } static constexpr quint8 archRequirements()