Преглед изворни кода

Noexcept added to the scope guard constructor (#100).

main
offa пре 7 година
родитељ
комит
a320126de6
1 измењених фајлова са 2 додато и 1 уклоњено
  1. +2
    -1
      include/detail/scope_guard_base.h

+ 2
- 1
include/detail/scope_guard_base.h Прегледај датотеку

@@ -48,7 +48,8 @@ namespace sr::detail
std::enable_if_t<(!std::is_lvalue_reference_v<EFP>)
&& std::is_nothrow_constructible_v<EF, EFP>, int> = 0
>
explicit scope_guard_base(EFP&& exitFunction) : m_exitfunction(std::move(exitFunction)),
explicit scope_guard_base(EFP&& exitFunction) noexcept(std::is_nothrow_constructible_v<EF, EFP>)
: m_exitfunction(std::move(exitFunction)),
m_execute_on_destruction(true)
{
}

Loading…
Откажи
Сачувај