Skip to content

Commit

Permalink
removed erroneous const
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorier committed Dec 31, 2024
1 parent 668b7fd commit 0976824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/thallium/eventual.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ template <typename T> class eventual {
*
* @return The value stored in the eventual.
*/
value_type&& wait() const && {
value_type&& wait() && {
TL_EVENTUAL_ASSERT(ABT_eventual_wait(m_eventual, nullptr));
return std::move(m_value);
}
Expand Down

0 comments on commit 0976824

Please sign in to comment.