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
98bfc314
Commit
98bfc314
authored
Jul 06, 2021
by
Walsh, Michael
Browse files
pass by reference name
parent
3e669dcb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Framework/Algorithms/src/CombineDiffCal.cpp
View file @
98bfc314
...
...
@@ -70,7 +70,7 @@ API::ITableWorkspace_sptr CombineDiffCal::sortTableWorkspace(DataObjects::TableW
return
alg
->
getProperty
(
"OutputWorkspace"
);
}
bool
findColumn
(
const
std
::
vector
<
std
::
string
>
&
columnNames
,
const
std
::
string
name
)
{
bool
findColumn
(
const
std
::
vector
<
std
::
string
>
&
columnNames
,
const
std
::
string
&
name
)
{
return
std
::
find
(
columnNames
.
begin
(),
columnNames
.
end
(),
name
)
!=
columnNames
.
end
();
}
...
...
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