Skip to content

Commit e4540c4

Browse files
committed
fix
1 parent 3addd27 commit e4540c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__flat_set/flat_set.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ class flat_set {
385385
return __emplace(std::forward<_Kp>(__x));
386386
}
387387
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, const value_type& __x) {
388-
return __emplace_hint(__hint, __x);
388+
return emplace_hint(__hint, __x);
389389
}
390390

391391
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, value_type&& __x) {

0 commit comments

Comments
 (0)