소스 검색

Unnecessary try/catch removed.

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

+ 1
- 5
include/scope_success.h 파일 보기

@@ -47,15 +47,11 @@ namespace sr
std::enable_if_t<std::is_constructible<EF, EFP>::value, int> = 0,
std::enable_if_t<std::is_lvalue_reference<EFP>::value, int> = 0
>
explicit scope_success(EFP&& exitFunction) try : m_exitFunction(exitFunction),
explicit scope_success(EFP&& exitFunction) : m_exitFunction(exitFunction),
m_execute_on_destruction(true),
m_uncaught_on_creation(uncaught_exceptions())
{
}
catch( ... )
{
throw;
}

scope_success(const scope_success&) = delete;


Loading…
취소
저장