소스 검색

Changed noexcepts of the scope guard ctor's adapted (fixes #107).

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

+ 0
- 7
include/scope_fail.h 파일 보기

@@ -39,13 +39,6 @@ namespace sr
int m_uncaught_on_creation = std::uncaught_exceptions();
};


template<class F>
struct is_noexcept_dtor<F, scope_fail_strategy>
{
static constexpr bool value = noexcept(std::declval<F>()());
};

}



+ 7
- 0
include/scope_success.h 파일 보기

@@ -39,6 +39,13 @@ namespace sr
int m_uncaught_on_creation = std::uncaught_exceptions();
};


template<class F>
struct is_noexcept_dtor<F, scope_success_strategy>
{
static constexpr bool value = noexcept(std::declval<F>()());
};

}



Loading…
취소
저장