Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/stdexec/__detail/__meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace stdexec {

template <class _Tp>
requires __typename<__mtypeof<_Tp::value>>
inline constexpr auto __v<_Tp> = _Tp::value;
inline constexpr __mtypeof<_Tp::value> __v<_Tp> = _Tp::value;

// These specializations exist because instantiating a variable template is cheaper than
// instantiating a class template.
Expand Down
Loading