Skip to content

Commit

Permalink
Refs #6315. Fixing Windows warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed Apr 29, 2013
1 parent 3be48cc commit bb9c88f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,9 @@ int vtkMDEWRebinningCutter::RequestData(vtkInformation* vtkNotUsed(request), vtk
}
catch (std::invalid_argument &e)
{
std::string error = e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
<< "plot non-orthogonal axes. " << error);
}

m_presenter->setAxisLabels(output);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,9 @@ int vtkMDHWNexusReader::RequestData(vtkInformation * vtkNotUsed(request), vtkInf
}
catch (std::invalid_argument &e)
{
std::string error = e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
<< "plot non-orthogonal axes. " << error);
}
m_presenter->setAxisLabels(output);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ int vtkMDHWSource::RequestData(vtkInformation *, vtkInformationVector **, vtkInf
}
catch (std::invalid_argument &e)
{
std::string error = e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
<< "plot non-orthogonal axes. " << error);
}
m_presenter->setAxisLabels(output);

Expand Down

0 comments on commit bb9c88f

Please sign in to comment.