Skip to content

Commit

Permalink
Refs #7449 fix Mac builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Vickie Lynch committed Aug 15, 2013
1 parent bf2be28 commit d3f2311
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 @@ -53,7 +53,7 @@ namespace Algorithms
void init();
/// Implement abstract Algorithm methods
void exec();
double moment(MantidVec& X, size_t n, double mean, size_t k);
double moment(MantidVec& X, size_t n, double mean, int k);

};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ namespace Algorithms

return;
}
double SeparateBackgroundFromSignal::moment(MantidVec& X, size_t n, double mean, size_t k)
double SeparateBackgroundFromSignal::moment(MantidVec& X, size_t n, double mean, int k)
{
double sum=0.0;
for (size_t i = 0; i < n; ++i)
Expand Down

0 comments on commit d3f2311

Please sign in to comment.