Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
Co-authored-by: Terry Cojean <tcojean@users.noreply.github.com>
  • Loading branch information
ginkgo-bot and tcojean committed Jun 5, 2023
1 parent ac27061 commit 7652d96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ginkgo/core/base/std_extensions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ using void_t = typename detail::make_void<Ts...>::type;


// Disable deprecation warnings when using standard > C++14
inline bool uncaught_exception() noexcept {
inline bool uncaught_exception() noexcept
{
#if __cplusplus > 201402L
return std::uncaught_exceptions() > 0;
#else
Expand Down
2 changes: 2 additions & 0 deletions omp/solver/idr_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <ginkgo/core/base/array.hpp>
#include <ginkgo/core/base/exception_helpers.hpp>
#include <ginkgo/core/base/math.hpp>


#include "common/unified/base/kernel_launch_reduction.hpp"


Expand Down

0 comments on commit 7652d96

Please sign in to comment.