瀏覽代碼

Prevent unused warning.

main
offa 7 年之前
父節點
當前提交
37f6962596
共有 2 個檔案被更改,包括 4 行新增0 行删除
  1. +2
    -0
      test/ScopeFailTest.cpp
  2. +2
    -0
      test/ScopeSuccessTest.cpp

+ 2
- 0
test/ScopeFailTest.cpp 查看文件

@@ -163,6 +163,7 @@ TEST_CASE("deleter called on exception", "[ScopeFail]")
{
REQUIRE_CALL(m, deleter());
auto guard = sr::make_scope_fail(deleter);
static_cast<void>(guard);
throw 3;
}
catch( ... )
@@ -179,6 +180,7 @@ TEST_CASE("deleter not called on pending exception", "[ScopeFail]")
catch( ... )
{
auto guard = sr::make_scope_fail(deleter);
static_cast<void>(guard);
}
}


+ 2
- 0
test/ScopeSuccessTest.cpp 查看文件

@@ -160,6 +160,7 @@ TEST_CASE("deleter not called on exception", "[ScopeFail]")
try
{
auto guard = sr::make_scope_success(deleter);
static_cast<void>(guard);
throw 3;
}
catch( ... )
@@ -177,6 +178,7 @@ TEST_CASE("deleter called on pending exception", "[ScopeFail]")
{
REQUIRE_CALL(m, deleter());
auto guard = sr::make_scope_success(deleter);
static_cast<void>(guard);
}
}


Loading…
取消
儲存