Parcourir la source

Noexcept added (#101).

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

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

@@ -147,7 +147,8 @@ namespace sr
&& (std::is_nothrow_move_assignable_v<DD>
|| std::is_nothrow_copy_assignable_v<DD>), int> = 0
>
unique_resource& operator=(unique_resource&& other)
unique_resource& operator=(unique_resource&& other) noexcept(std::is_nothrow_assignable_v<R&, R>
&& std::is_nothrow_assignable_v<D&, D>)
{
if( this != &other )
{

Chargement…
Annuler
Enregistrer