Skip to content

Commit

Permalink
Refs #6315. Trying to fix Intel warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed Apr 29, 2013
1 parent 44f1b90 commit 9d7e352
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkAxes.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef VTKSMPROXY_SILENT_H
#define VTKSMPROXY_SILENT_H

#if defined(__INTEL_COMPILER)
#pragma warning disable 1170
#endif
#include <vtkSMProxy.h>
#if defined(__INTEL_COMPILER)
#pragma warning enable 1170
#endif

#endif // VTKSMPROXY_SILENT_H
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <pqPipelineRepresentation.h>
#include <pqScalarsToColors.h>
#include <pqSMAdaptor.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"

#include <QColor>
#include <QList>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <vtkSMDoubleVectorProperty.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMProxyManager.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"
#include <vtkSMSourceProxy.h>
#include <vtkSMReaderFactory.h>
#include <vtksys/SystemTools.hxx>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <pqServerManagerModel.h>
#include <vtkContextMouseEvent.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"

#include <QString>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <pqRenderView.h>
#include <vtkDataObject.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"

#include <QHBoxLayout>
#include <QMessageBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <pqPluginManager.h>
#include <pqRenderView.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"

#include <QMessageBox>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <pqAnimationScene.h>
#include <pqPVApplicationCore.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"

namespace Mantid
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <vtkSMDoubleVectorProperty.h>
#include <vtkSMPropertyHelper.h>
#include <vtkSMPropertyIterator.h>
#include <vtkSMProxy.h>
#include "MantidVatesSimpleGuiViewWidgets/vtkSMProxy_Silent.h"
#include <vtkSMSourceProxy.h>

#include <QDebug>
Expand Down

0 comments on commit 9d7e352

Please sign in to comment.