File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9445,7 +9445,7 @@ int main()
9445
9445
v1_NewEnd3 = unique ( v1.begin( ), v1_NewEnd2, greater<int>( ) );
9446
9446
9447
9447
cout << "Removing adjacent elements satisfying the binary\n "
9448
- << " predicate mod_equal from vector v1 gives ( " ;
9448
+ << " predicate greater<int> from vector v1 gives ( " ;
9449
9449
for ( v1_Iter3 = v1.begin( ) ; v1_Iter3 != v1_NewEnd3 ; v1_Iter3++ )
9450
9450
cout << *v1_Iter3 << " ";
9451
9451
cout << ")." << endl;
@@ -9460,7 +9460,7 @@ Removing adjacent duplicates from vector v1 under the
9460
9460
binary predicate mod_equal gives
9461
9461
( 5 4 7 ).
9462
9462
Removing adjacent elements satisfying the binary
9463
- predicate mod_equal from vector v1 gives ( 5 7 ).
9463
+ predicate greater<int> from vector v1 gives ( 5 7 ).
9464
9464
```
9465
9465
9466
9466
## <a name="unique_copy"></a> `unique_copy`
You can’t perform that action at this time.
0 commit comments