소스 검색

Formatting.

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

+ 1
- 1
include/scope_fail.h 파일 보기

@@ -42,7 +42,6 @@ namespace sr


int m_uncaught_on_creation = uncaught_exceptions();

};


@@ -62,6 +61,7 @@ namespace sr

using detail::scope_guard_base<EF, detail::scope_fail_strategy>::scope_guard_base;


private:

};

+ 2
- 1
include/unique_resource.h 파일 보기

@@ -30,7 +30,8 @@ namespace sr
namespace detail
{
template<class T, class TT>
using is_ntmocp_constructible = std::conditional_t<std::is_reference<TT>::value || !std::is_nothrow_move_constructible<TT>::value,
using is_ntmocp_constructible = std::conditional_t<std::is_reference<TT>::value
|| !std::is_nothrow_move_constructible<TT>::value,
typename std::is_constructible<T, const TT&>::type,
typename std::is_constructible<T, TT>::type>;


Loading…
취소
저장