Skip to content

Commit

Permalink
Fix the docs build.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadden committed Sep 17, 2020
1 parent b7f8e7b commit ec576d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/alia/signals/async.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ template<class Result>
struct async_reporter
{
void
report_success(Result result)
report_success(Result result) const
{
auto& data = *data_;
if (data.version == version_)
Expand All @@ -121,7 +121,7 @@ struct async_reporter
}

void
report_failure(std::exception_ptr error)
report_failure(std::exception_ptr error) const
{
auto& data = *data_;
if (data.version == version_)
Expand Down

0 comments on commit ec576d0

Please sign in to comment.