소스 검색

Exception handling of reset(R&&) corrected (fixes #55, fixes #56).

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

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

@@ -20,6 +20,7 @@

#pragma once

#include "scope_exit.h"
#include <utility>
#include <type_traits>

@@ -141,10 +142,11 @@ namespace sr
template<class RR>
void reset(RR&& r)
{
auto se = make_scope_exit([this, &r] { get_deleter()(r); });
reset();

m_resource = move_assign_if_noexcept(r);
m_execute_on_destruction = true;
se.release();
}

void release()

Loading…
취소
저장