Skip to content

Commit

Permalink
making inspect happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Heller committed Aug 31, 2016
1 parent 010490c commit e509289
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hpx/runtime/actions/action_support.hpp
Expand Up @@ -187,7 +187,8 @@ namespace hpx { namespace actions
/// thread function for an action which has to be invoked without
/// continuations.
virtual threads::thread_function_type
get_thread_function(naming::id_type&& target, naming::address::address_type lva) = 0;
get_thread_function(naming::id_type&& target,
naming::address::address_type lva) = 0;

/// The \a get_thread_function constructs a proper thread function for
/// a \a thread, encapsulating the functionality, the arguments, and
Expand All @@ -205,7 +206,8 @@ namespace hpx { namespace actions
/// thread function for an action which has to be invoked with
/// continuations.
virtual threads::thread_function_type
get_thread_function(naming::id_type&& target, std::unique_ptr<continuation> cont,
get_thread_function(naming::id_type&& target,
std::unique_ptr<continuation> cont,
naming::address::address_type lva) = 0;

/// return the id of the locality of the parent thread
Expand Down

0 comments on commit e509289

Please sign in to comment.