Skip to content

Commit 90ffcf8

Browse files
authored
Fix typo (#13, thanks @xyz1001)
Good find :)
1 parent 31b5071 commit 90ffcf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nonstd/scope.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ class unique_resource
897897
);
898898

899899
scope_static_assert(
900-
(std11::is_move_constructible<R>::value && std11::is_nothrow_move_constructible<D>::value )
900+
(std11::is_move_constructible<D>::value && std11::is_nothrow_move_constructible<D>::value )
901901
|| std11::is_copy_constructible<D>::value
902902
, "deleter must be nothrow_move_constructible or copy_constructible"
903903
);

0 commit comments

Comments
 (0)