Skip to content

Commit

Permalink
Merge pull request #2832 from taeguk/tg_fix_2818
Browse files Browse the repository at this point in the history
Fix a strange thing in parallel::util::detail::handle_local_exceptions. (Fix #2818)
  • Loading branch information
hkaiser committed Aug 21, 2017
2 parents 7a01561 + 5368318 commit 19453bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hpx/parallel/util/detail/handle_local_exceptions.hpp
@@ -1,4 +1,5 @@
// Copyright (c) 2007-2016 Hartmut Kaiser
// Copyright (c) 2017 Taeguk Kwon
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down Expand Up @@ -35,7 +36,7 @@ namespace hpx { namespace parallel { namespace util { namespace detail
throw ba;
}
catch (...) {
throw;
throw exception_list(e);
}
}

Expand Down

0 comments on commit 19453bd

Please sign in to comment.