Skip to content

Commit

Permalink
Remove unnecesarry semicolons, to keep G++'s pedantic mode happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frans-Willem committed Dec 9, 2017
1 parent de71511 commit 6cd28a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stlab/concurrency/future.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ struct shared_base<T, enable_if_copyable<T>> : std::enable_shared_from_this<shar
template <typename R>
auto reduce(R&& r) {
return std::forward<R>(r);
};
}

auto reduce(future<future<void>>&& r) -> future<void>;

Expand Down Expand Up @@ -448,7 +448,7 @@ struct shared_base<T, enable_if_not_copyable<T>> : std::enable_shared_from_this<
template <typename R>
auto reduce(R&& r) {
return std::forward<R>(r);
};
}

template <typename R>
auto reduce(future<future<R>>&& r) -> future<R>;
Expand Down Expand Up @@ -537,7 +537,7 @@ struct shared_base<void> : std::enable_shared_from_this<shared_base<void>> {
template <typename R>
auto reduce(R&& r) {
return std::forward<R>(r);
};
}

auto reduce(future<future<void>>&& r) -> future<void>;

Expand Down

0 comments on commit 6cd28a9

Please sign in to comment.