Skip to content

Commit 17913b9

Browse files
committed
Clang modules: Fix build
1 parent dcda573 commit 17913b9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

libcxx/test/std/utilities/function.objects/func.bind.partial/bind_back.pass.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@
1616
#include <functional>
1717

1818
#include <cassert>
19+
#include <concepts>
1920
#include <tuple>
2021
#include <utility>
2122

2223
#include "callable_types.h"
2324
#include "types.h"
2425

25-
template <class Fn, class... Args>
26-
concept back_bindable =
27-
requires(Fn&& fn, Args&&... args) { std::bind_back(std::forward<Fn>(fn), std::forward<Args>(args)...); };
28-
2926
constexpr void test_basic_bindings() {
3027
{ // Bind arguments, call without arguments
3128
{

0 commit comments

Comments
 (0)