浏览代码

Formatting.

main
offa 7 年前
父节点
当前提交
f8fc803afa
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      include/scope_fail.h
  2. +1
    -1
      include/scope_success.h

+ 1
- 1
include/scope_fail.h 查看文件

@@ -84,7 +84,7 @@ namespace sr

~scope_fail() noexcept(noexcept(std::declval<EF>()))
{
if( (m_execute_on_destruction == true) && ( uncaught_exceptions() > m_uncaught_on_creation ) )
if( ( m_execute_on_destruction == true ) && ( uncaught_exceptions() > m_uncaught_on_creation ) )
{
m_exitFunction();
}

+ 1
- 1
include/scope_success.h 查看文件

@@ -79,7 +79,7 @@ namespace sr

~scope_success() noexcept(noexcept(std::declval<EF>()))
{
if( (m_execute_on_destruction == true) && ( uncaught_exceptions() <= m_uncaught_on_creation ) )
if( ( m_execute_on_destruction == true ) && ( uncaught_exceptions() <= m_uncaught_on_creation ) )
{
m_exitFunction();
}

正在加载...
取消
保存