소스 검색

Forwarding instead of moving is required by R8 (#121).

main
offa 6 년 전
부모
커밋
e5a9b9acbf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      include/detail/scope_guard_base.h

+ 1
- 1
include/detail/scope_guard_base.h 파일 보기

@@ -58,7 +58,7 @@ namespace sr::detail
>
explicit scope_guard_base(EFP&& exitFunction) noexcept(std::is_nothrow_constructible_v<EF, EFP>
|| std::is_nothrow_constructible_v<EF, EFP&>)
: m_exitfunction(std::move(exitFunction)),
: m_exitfunction(std::forward<EFP>(exitFunction)),
m_execute_on_destruction(true)
{
}

Loading…
취소
저장