修改pods
This commit is contained in:
5
Pods/abseil/absl/functional/bind_front.h
generated
5
Pods/abseil/absl/functional/bind_front.h
generated
@@ -34,6 +34,8 @@
|
||||
#include <functional> // For std::bind_front.
|
||||
#endif // defined(__cpp_lib_bind_front) && __cpp_lib_bind_front >= 201907L
|
||||
|
||||
#include <utility>
|
||||
|
||||
#include "absl/functional/internal/front_binder.h"
|
||||
#include "absl/utility/utility.h"
|
||||
|
||||
@@ -182,8 +184,7 @@ template <class F, class... BoundArgs>
|
||||
constexpr functional_internal::bind_front_t<F, BoundArgs...> bind_front(
|
||||
F&& func, BoundArgs&&... args) {
|
||||
return functional_internal::bind_front_t<F, BoundArgs...>(
|
||||
absl::in_place, absl::forward<F>(func),
|
||||
absl::forward<BoundArgs>(args)...);
|
||||
absl::in_place, std::forward<F>(func), std::forward<BoundArgs>(args)...);
|
||||
}
|
||||
#endif // defined(__cpp_lib_bind_front) && __cpp_lib_bind_front >= 201907L
|
||||
|
||||
|
||||
Reference in New Issue
Block a user