Skip to content

Commit

Permalink
Re mantidproject#8394: Removed additional type specifier.
Browse files Browse the repository at this point in the history
- The DEFAULT_NUM_STEPS constant had both auto and int type specifiers this commit removes the int.
  • Loading branch information
Edward Brown committed Jul 24, 2017
1 parent fcc39b4 commit b684506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Crystal/test/PeakIntensityVsRadiusTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class PeakIntensityVsRadiusTest : public CxxTest::TestSuite {
double BackgroundOuterFactor,
double BackgroundInnerRadius,
double BackgroundOuterRadius) {
auto int constexpr DEFAULT_NUM_STEPS = 16;
auto constexpr DEFAULT_NUM_STEPS = 16;
TS_ASSERT_THROWS_NOTHING(alg.setPropertyValue(
"InputWorkspace", "PeakIntensityVsRadiusTest_MDEWS"));
TS_ASSERT_THROWS_NOTHING(alg.setPropertyValue(
Expand Down

0 comments on commit b684506

Please sign in to comment.