Skip to content

Commit

Permalink
Added missing typename, missing class key, and missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Apr 21, 2015
1 parent 8732e1d commit 3172c9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions hpx/util/detail/function_template.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <hpx/config.hpp>
#include <hpx/runtime/serialization/serialize.hpp>
#include <hpx/traits/is_callable.hpp>
#include <hpx/traits/serialize_as_future.hpp>
#include <hpx/util/detail/basic_function.hpp>
#include <hpx/util/detail/function_registration.hpp>
#include <hpx/util/detail/vtable/callable_vtable.hpp>
Expand Down
8 changes: 4 additions & 4 deletions hpx/util/functional/colocated_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ namespace hpx { namespace util { namespace functional

HPX_SERIALIZATION_SPLIT_MEMBER();

friend traits::serialize_as_future<apply_continuation_impl>;
friend struct traits::serialize_as_future<apply_continuation_impl>;

bound_type bound_;
actions::continuation_type cont_;
Expand Down Expand Up @@ -158,7 +158,7 @@ namespace hpx { namespace traits
static void
call(util::functional::detail::apply_continuation_impl<Bound>& b)
{
typedef util::functional::detail::apply_continuation_impl<
typedef typename util::functional::detail::apply_continuation_impl<
Bound
>::bound_type bound_type;
traits::serialize_as_future<bound_type>::call(b.bound_);
Expand Down Expand Up @@ -250,7 +250,7 @@ namespace hpx { namespace util { namespace functional

HPX_SERIALIZATION_SPLIT_MEMBER();

friend traits::serialize_as_future<async_continuation_impl>;
friend struct traits::serialize_as_future<async_continuation_impl>;

bound_type bound_;
actions::continuation_type cont_;
Expand Down Expand Up @@ -285,7 +285,7 @@ namespace hpx { namespace traits
static void
call(util::functional::detail::async_continuation_impl<Bound>& b)
{
typedef util::functional::detail::async_continuation_impl<
typedef typename util::functional::detail::async_continuation_impl<
Bound
>::bound_type bound_type;
traits::serialize_as_future<bound_type>::call(b.bound_);
Expand Down

0 comments on commit 3172c9a

Please sign in to comment.