ソースを参照

Missing forward added.

main
offa 7年前
コミット
1678a03da6
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      include/detail/wrapper.h

+ 1
- 1
include/detail/wrapper.h ファイルの表示

@@ -32,7 +32,7 @@ namespace sr::detail
public:

template<class TT, class G, std::enable_if_t<std::is_constructible_v<T, TT>, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(Wrapper{value})) : Wrapper(value)
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(Wrapper{value})) : Wrapper(std::forward<TT>(value))
{
g.release();
}

読み込み中…
キャンセル
保存