瀏覽代碼

Strategy extracted for scope exit.

main
offa 7 年之前
父節點
當前提交
176180601d
共有 2 個文件被更改,包括 16 次插入5 次删除
  1. +13
    -2
      include/scope_exit.h
  2. +3
    -3
      include/scope_guard_base.h

+ 13
- 2
include/scope_exit.h 查看文件

@@ -24,13 +24,24 @@

namespace sr
{
namespace detail
{
struct scope_exit_strategy
{
constexpr bool should_execute() const
{
return true;
}
};
}


template<class EF>
class scope_exit : public detail::scope_guard_base<EF>
class scope_exit : public detail::scope_guard_base<EF, detail::scope_exit_strategy>
{
public:

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


private:

+ 3
- 3
include/scope_guard_base.h 查看文件

@@ -28,8 +28,8 @@ namespace sr
namespace detail
{

template<class EF>
class scope_guard_base
template<class EF, class Strategy>
class scope_guard_base : private Strategy
{
public:

@@ -79,7 +79,7 @@ namespace detail

~scope_guard_base() noexcept(true)
{
if( m_execute_on_destruction == true )
if( m_execute_on_destruction == true && this->should_execute() == true )
{
m_exitFunction();
}

Loading…
取消
儲存