Skip to content

Commit

Permalink
Circumventing VS2015 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Aug 23, 2017
1 parent 224fd2c commit 7b6a69d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hpx/util/detail/pack_traversal_impl.hpp
Expand Up @@ -40,7 +40,7 @@ namespace util {
{
}

HPX_CONSTEXPR tuple<T...> unbox()
tuple<T...> unbox()
{
return std::move(boxed_);
}
Expand All @@ -56,7 +56,7 @@ namespace util {
{
}

HPX_CONSTEXPR tuple<> unbox() noexcept
HPX_CONSTEXPR tuple<> unbox() const noexcept
{
return tuple<>{};
}
Expand Down

0 comments on commit 7b6a69d

Please sign in to comment.