Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
4a5bc56b
Commit
4a5bc56b
authored
Feb 20, 2017
by
Samuel Jackson
Browse files
Refs #18920 Fix warning & fix lambda capture
parent
8d6ee67c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Framework/DataObjects/test/PeakTest.h
View file @
4a5bc56b
...
...
@@ -391,7 +391,7 @@ public:
// test with & without extended detector space
// extended space is a sphere, so all points should fall radius*detector
// direction away from the detector direction with extended space
auto
testQ
=
[
this
,
&
sphereInst
,
&
refFrame
,
&
refBeamDir
](
const
V3D
&
q
)
{
auto
testQ
=
[
&
](
const
V3D
&
q
)
{
// Compute expected direction
const
auto
qBeam
=
q
.
scalar_prod
(
refBeamDir
);
const
double
norm_q
=
q
.
norm
();
...
...
@@ -486,7 +486,7 @@ public:
int
index
=
0
;
std
::
vector
<
double
>
angles
(
8
);
std
::
generate
(
angles
.
begin
(),
angles
.
end
(),
[
&
index
,
&
angles
]()
{
return
index
++
*
M_PI
/
angles
.
size
();
return
static_cast
<
double
>
(
index
++
)
*
M_PI
/
angles
.
size
();
});
std
::
for_each
(
angles
.
begin
(),
angles
.
end
(),
testTheta
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment