Procházet zdrojové kódy

Noexcepts fixed.

main
offa před 7 roky
rodič
revize
b30ba27498
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h Zobrazit soubor

@@ -75,12 +75,12 @@ namespace sr
return m_value;
}

void reset(T&& newValue) noexcept(noexcept(m_value = move_assign_if_noexcept(newValue)))
void reset(T&& newValue) noexcept(std::is_nothrow_assignable<T, decltype(move_assign_if_noexcept(newValue))>::value)
{
m_value = move_assign_if_noexcept(newValue);
}

void reset(const T& newValue) noexcept(noexcept(m_value = newValue))
void reset(const T& newValue) noexcept(std::is_nothrow_assignable<T, const T&>::value)
{
m_value = newValue;
}

Načítá se…
Zrušit
Uložit