#include #include #include #include namespace mbgl { namespace util { template::value>> MBGL_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