Skip to content

Commit

Permalink
Fix GCC 9 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadden committed Sep 21, 2020
1 parent 3885255 commit 2cd14ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/alia/signals/async.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ async(Context ctx, Launcher launcher, Args const&... args)
{
try
{
async_reporter<Result> reporter;
reporter.system_ = &get<system_tag>(ctx);
reporter.version_ = data.version;
reporter.container_ = get_active_component_container(ctx);
reporter.data_ = data_ptr;
auto reporter = async_reporter<Result>{
data_ptr,
data.version,
&get<system_tag>(ctx),
get_active_component_container(ctx)};
launcher(ctx, reporter, read_signal(args)...);
data.status = async_status::LAUNCHED;
}
Expand Down

0 comments on commit 2cd14ac

Please sign in to comment.