Skip to content

Commit

Permalink
Fix Windows compile error
Browse files Browse the repository at this point in the history
Refs #7860
  • Loading branch information
DanNixon committed Aug 20, 2014
1 parent 4dae20b commit e96cf67
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -136,7 +136,7 @@ namespace CustomInterfaces
updateRawPlot();

auto axisRange = getCurveRange("SymmRawPlot");
double symmRange = fmax(fabs(axisRange.first), fabs(axisRange.second));
double symmRange = std::max(fabs(axisRange.first), fabs(axisRange.second));
g_log.information() << "Symmetrise x axis range +/- " << symmRange << std::endl;
m_dblManager->setValue(m_properties["PreviewRange"], symmRange);

Expand Down

0 comments on commit e96cf67

Please sign in to comment.