Skip to content

Commit 0d52b22

Browse files
authored
Fix invalid std:: prefix for public keyword in value_compare class reference
1 parent 7e272e0 commit 0d52b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/value-compare-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Provides a function object that can compare the elements of a hash_map by compar
1414

1515
```cpp
1616
class value_compare
17-
: std::public binary_function<value_type, value_type, bool>
17+
: public binary_function<value_type, value_type, bool>
1818
{
1919
public:
2020
bool operator()(

0 commit comments

Comments
 (0)