Skip to content

Commit

Permalink
disable deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
upsj committed Oct 28, 2023
1 parent a479407 commit daa5703
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core/test/reorder/rcm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <ginkgo/core/reorder/rcm.hpp>


#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 5211, 4973, 4974)
#endif


#include <memory>


Expand Down
11 changes: 11 additions & 0 deletions cuda/test/reorder/rcm_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <ginkgo/core/reorder/rcm.hpp>


#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 5211, 4973, 4974)
#endif


#include <gtest/gtest.h>


Expand Down
11 changes: 11 additions & 0 deletions omp/test/reorder/rcm_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <ginkgo/core/reorder/rcm.hpp>


#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 5211, 4973, 4974)
#endif


#include <algorithm>
#include <deque>
#include <fstream>
Expand Down
11 changes: 11 additions & 0 deletions reference/test/reorder/rcm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <ginkgo/core/reorder/rcm.hpp>


#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 5211, 4973, 4974)
#endif


#include <algorithm>
#include <fstream>
#include <memory>
Expand Down

0 comments on commit daa5703

Please sign in to comment.