Explorar el Código

Move ctor made noexcept (fixes #8).

main
offa hace 7 años
padre
commit
1aeaf4ed05
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      include/scope_guard.h

+ 2
- 2
include/scope_guard.h Ver fichero

@@ -16,8 +16,8 @@ namespace sg
{
}

scope_guard_t(scope_guard_t&& other) : m_deleter(std::move(other.m_deleter)),
m_execute_on_destruction(other.m_execute_on_destruction)
scope_guard_t(scope_guard_t&& other) noexcept : m_deleter(std::move(other.m_deleter)),
m_execute_on_destruction(other.m_execute_on_destruction)
{
other.release();
}

Cargando…
Cancelar
Guardar