Skip to content

Commit 07019f3

Browse files
committed
Add include <exception> for std::exception
1 parent 1b4ca60 commit 07019f3

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

dpnp/backend/extensions/elementwise_functions/elementwise_functions.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#pragma once
2727

28+
#include <exception>
2829
#include <stdexcept>
2930

3031
#include <sycl/sycl.hpp>

dpnp/backend/extensions/lapack/gesv.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <exception>
2627
#include <stdexcept>
2728

2829
#include <pybind11/pybind11.h>

dpnp/backend/extensions/lapack/gesv_batch.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <exception>
2627
#include <stdexcept>
2728

2829
#include <pybind11/pybind11.h>

dpnp/backend/kernels/dpnp_krnl_common.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
//*****************************************************************************
2525

2626
#include <cmath>
27+
#include <exception>
2728
#include <iostream>
2829
#include <stdexcept>
2930
#include <type_traits>

dpnp/backend/kernels/dpnp_krnl_random.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include <cassert>
2727
#include <cmath>
28+
#include <exception>
2829
#include <mkl_vsl.h>
2930
#include <stdexcept>
3031
#include <vector>

0 commit comments

Comments
 (0)