소스 검색

Missing field initialization of uncaught exceptions added.

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

+ 6
- 3
include/scope_success.h 파일 보기

@@ -38,7 +38,8 @@ namespace sr
&& std::is_nothrow_constructible<Deleter, D>::value, int> = 0
>
explicit scope_success(D&& deleter) : m_deleter(std::move(deleter)),
m_execute_on_destruction(true)
m_execute_on_destruction(true),
m_uncaught_on_creation(uncaught_exceptions())
{
}

@@ -47,7 +48,8 @@ namespace sr
std::enable_if_t<std::is_lvalue_reference<D>::value, int> = 0
>
explicit scope_success(D&& deleter) try : m_deleter(deleter),
m_execute_on_destruction(true)
m_execute_on_destruction(true),
m_uncaught_on_creation(uncaught_exceptions())
{
}
catch( ... )
@@ -71,7 +73,8 @@ namespace sr
std::enable_if_t<!std::is_nothrow_move_constructible<T>::value, int> = 0
>
scope_success(scope_success&& other) : m_deleter(other.m_deleter),
m_execute_on_destruction(other.m_execute_on_destruction)
m_execute_on_destruction(other.m_execute_on_destruction),
m_uncaught_on_creation(other.m_uncaught_on_creation)
{
other.release();
}

Loading…
취소
저장