Skip to content

Commit 234ead0

Browse files
committed
Avoid shadowing (#31, thanks @mattyclarkson)
1 parent b480846 commit 234ead0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nonstd/string_view.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ class basic_string_view
874874
{
875875
const basic_string_view v;
876876

877-
nssv_constexpr explicit not_in_view( basic_string_view v ) : v( v ) {}
877+
nssv_constexpr explicit not_in_view( basic_string_view v_ ) : v( v_ ) {}
878878

879879
nssv_constexpr bool operator()( CharT c ) const
880880
{

0 commit comments

Comments
 (0)