Skip to content

Commit

Permalink
refs #5633. Fix GCC errors and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jul 23, 2012
1 parent e6ab707 commit e7d6892
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "MantidAPI/FunctionDomain1D.h"
#include "MantidAPI/FunctionValues.h"
#include <algorithm>
#include <boost/shared_ptr.hpp>

using namespace Mantid::CurveFitting;
using namespace Mantid::API;
Expand All @@ -22,8 +23,8 @@ class ProductLinearExpTest : public CxxTest::TestSuite
class LinearIncrementingAssignment
{
private:
const double m_step;
double m_current;
const double m_step;
public:
LinearIncrementingAssignment(double min, double step) : m_current(min), m_step(step)
{
Expand Down

0 comments on commit e7d6892

Please sign in to comment.