You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template<class... A> constexprvariant_storage_impl( mp11::mp_size_t<0>, A&&... a ): first_( std::forward<A>(a)... )
562
568
{
563
569
}
564
570
571
+
#if defined(BOOST_GCC) && (__GNUC__ >= 12)
572
+
# pragma GCC diagnostic pop
573
+
#endif
574
+
565
575
template<std::size_t I, class... A> constexprvariant_storage_impl( mp11::mp_size_t<I>, A&&... a ): rest_( mp11::mp_size_t<I-1>(), std::forward<A>(a)... )
0 commit comments