Skip to content

Commit

Permalink
Fix a strange thing in parallel::util::detail::handle_local_exception…
Browse files Browse the repository at this point in the history
…s. (Fix STEllAR-GROUP#2818)
  • Loading branch information
taeguk committed Aug 14, 2017
1 parent 188c202 commit 5368318
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 5368318

Please sign in to comment.