We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d00b4 commit c689b16Copy full SHA for c689b16
algorithm
@@ -46,7 +46,7 @@ namespace std{
46
template<class InputIterator, class T> _UCXXEXPORT
47
InputIterator find(InputIterator first, InputIterator last, const T& value)
48
{
49
- while(first !=last && *first != value){
+ while(first !=last && ! ( *first == value ) ){
50
++first;
51
}
52
return first;
0 commit comments