#include #include #include namespace mbgl { namespace util { template::value>> constexpr std::array convert(const std::array&from) { std::array to {}; std::copy(std::begin(from), std::end(from), std::begin(to)); return to; } } // namespace util } // namespace mbgl