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
e133227e
Commit
e133227e
authored
Apr 21, 2016
by
Hahn, Steven
Browse files
Start fixing build issues.
parent
154fdf3e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Framework/DataObjects/test/PeakTest.h
View file @
e133227e
...
...
@@ -19,6 +19,17 @@ using namespace Mantid::DataObjects;
using
namespace
Mantid
::
Geometry
;
using
namespace
Mantid
::
Kernel
;
namespace
boost
{
template
<
class
CharType
,
class
CharTrait
>
std
::
basic_ostream
<
CharType
,
CharTrait
>
&
operator
<<
(
std
::
basic_ostream
<
CharType
,
CharTrait
>
&
out
,
optional
<
double
>
const
&
maybe
)
{
if
(
maybe
)
out
<<
maybe
;
return
out
;
}
}
class
PeakTest
:
public
CxxTest
::
TestSuite
{
private:
/// Common instrument
...
...
Vates/VatesAPI/src/vtkDataSetToPeaksFilteredDataSet.cpp
View file @
e133227e
...
...
@@ -181,7 +181,6 @@ GCC_DIAG_OFF(strict-aliasing)
/**
* Add information for a single peak to the peakInfo vector.
* @param peak The peak from which the information will be extracted.
* @param coordinateSystem The coordinate system in which the peaks position should be retrieved.
* @param peaksInfo A reference to the vector containing peak information.
*/
void
vtkDataSetToPeaksFilteredDataSet
::
addSinglePeak
(
...
...
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