Parcourir la source

Functionname fixed.

main
offa il y a 7 ans
Parent
révision
67188316a3
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      include/unique_resource.h

+ 2
- 2
include/unique_resource.h Voir le fichier

@@ -65,9 +65,9 @@ namespace sr
return m_value;
}

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

void reset(const T& newValue) noexcept(std::is_nothrow_assignable<T, const T&>::value)

Chargement…
Annuler
Enregistrer