Skip to content

Commit 173a745

Browse files
committedSep 23, 2016
add struct adapted_variant_tag;
1 parent e581821 commit 173a745

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎include/mapbox/variant.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,7 @@ class variant
547547
static const std::size_t data_size = detail::static_max<sizeof(Types)...>::value;
548548
static const std::size_t data_align = detail::static_max<alignof(Types)...>::value;
549549
public:
550+
struct adapted_variant_tag;
550551
using types = std::tuple<Types...>;
551552
private:
552553
using first_type = typename std::tuple_element<0, types>::type;

0 commit comments

Comments
 (0)
Please sign in to comment.