Skip to content

Commit

Permalink
Merge pull request #18 from bemanproject/fix-when_any
Browse files Browse the repository at this point in the history
fixed a problem with when_any
  • Loading branch information
dietmarkuehl authored Feb 16, 2025
2 parents 6972ef9 + c7b6657 commit 062d439
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@ on:
push:
branches: [ "main" ]
paths:
- "include/**"
- "src/**"
- "test/**"
- "CMakeLists.txt"
- "**.hpp"
- "**.cpp"
- "**/CMakeLists.txt"
- ".github/workflows/linux.yml"
pull_request:
branches: [ "main" ]
paths:
- "include/**"
- "src/**"
- "test/**"
- "CMakeLists.txt"
- "**.hpp"
- "**.cpp"
- "**/CMakeLists.txt"
- ".github/workflows/linux.yml"

jobs:
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@ on:
push:
branches: [ "main" ]
paths:
- "include/**"
- "src/**"
- "test/**"
- "CMakeLists.txt"
- "**.hpp"
- "**.cpp"
- "**/CMakeLists.txt"
- ".github/workflows/macos.yml"
pull_request:
branches: [ "main" ]
paths:
- "include/**"
- "src/**"
- "test/**"
- "CMakeLists.txt"
- "**.hpp"
- "**.cpp"
- "**/CMakeLists.txt"
- ".github/workflows/macos.yml"

jobs:
Expand Down
8 changes: 4 additions & 4 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
# cmake-format: on

set(EXAMPLES
http-server
empty
server
client
task
cppcon-2024
empty
http-server
milano
server
task
)

foreach(EXAMPLE ${EXAMPLES})
Expand Down
1 change: 1 addition & 0 deletions examples/demo_algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ namespace demo::detail

template <typename> struct make_type_list;
template <template <typename> class L, typename... T>
requires(! ::std::same_as<L<ex::set_stopped_t()>, ex::completion_signatures<ex::set_stopped_t()>>)
struct make_type_list<L<T...>>
{
using type = ex::detail::type_list<T...>;
Expand Down

0 comments on commit 062d439

Please sign in to comment.