Skip to content

Commit

Permalink
Clear trivial warnings. Re #3868.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Dec 2, 2011
1 parent 861fa48 commit 1e7484c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ namespace DataHandling
if (peaksWorkspace)
{
g_log.information("Peaks Workspace saving to Nexus would be done");
int pNum = peaksWorkspace->getNumberPeaks();
// int pNum = peaksWorkspace->getNumberPeaks();
// peaksWorkspace->saveNexus( cppFile );

} // finish peaks workspace specifics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void OneCurvePlot::setData(const double* x,const double* y,int dataSize)
setXScale(x[0],x[dataSize-1]);
double from = y[0];
double to = from;
for(size_t i = 0; i < dataSize; ++i)
for(int i = 0; i < dataSize; ++i)
{
const double& yy = y[i];
if (yy < from) from = yy;
Expand Down

0 comments on commit 1e7484c

Please sign in to comment.