Quellcode durchsuchen

Forwarding instead of moving is required by R8 (#121).

main
offa vor 6 Jahren
Ursprung
Commit
1a2c7c1b02
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      include/detail/scope_guard_base.h

+ 1
- 1
include/detail/scope_guard_base.h Datei anzeigen

@@ -80,7 +80,7 @@ namespace sr::detail
scope_guard_base(scope_guard_base&& other) noexcept(std::is_nothrow_move_constructible_v<EF>
|| std::is_nothrow_copy_constructible_v<EF>)
: Strategy(other),
m_exitfunction(std::move_if_noexcept(other.m_exitfunction)),
m_exitfunction(std::forward<EF>(other.m_exitfunction)),
m_execute_on_destruction(other.m_execute_on_destruction)
{
other.release();

Laden…
Abbrechen
Speichern