Skip to content

Commit

Permalink
Refs #6315. Fixing Intel warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed Apr 29, 2013
1 parent bb9c88f commit 44f1b90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#ifndef VTKRECTILINEARGRID_SILENT_H
#define VTKRECTILINEARGRID_SILENT_H

#if defined(__GNUC__)
#if defined(__GNUC__) && !(defined(__INTEL_COMPILER))
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 6 )
#pragma GCC diagnostic push
#endif
#pragma GCC diagnostic ignored "-Wconversion"
#endif
#include <vtkRectilinearGrid.h>
#if defined(__GNUC__)
#if defined(__GNUC__) && !(defined(__INTEL_COMPILER))
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 6 )
#pragma GCC diagnostic pop
#endif
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#ifndef VTKSTRUCTUREDGRID_SILENT_H
#define VTKSTRUCTUREDGRID_SILENT_H

#if defined(__GNUC__)
#if defined(__GNUC__) && !(defined(__INTEL_COMPILER))
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 6 )
#pragma GCC diagnostic push
#endif
#pragma GCC diagnostic ignored "-Wconversion"
#endif
#include <vtkStructuredGrid.h>
#if defined(__GNUC__)
#if defined(__GNUC__) && !(defined(__INTEL_COMPILER))
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 6 )
#pragma GCC diagnostic pop
#endif
Expand Down

0 comments on commit 44f1b90

Please sign in to comment.