Skip to content

Commit

Permalink
Clang modules: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JMazurkiewicz committed Feb 27, 2024
1 parent dcda573 commit 17913b9
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@
#include <functional>

#include <cassert>
#include <concepts>
#include <tuple>
#include <utility>

#include "callable_types.h"
#include "types.h"

template <class Fn, class... Args>
concept back_bindable =
requires(Fn&& fn, Args&&... args) { std::bind_back(std::forward<Fn>(fn), std::forward<Args>(args)...); };

constexpr void test_basic_bindings() {
{ // Bind arguments, call without arguments
{
Expand Down

0 comments on commit 17913b9

Please sign in to comment.