Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
551819aa
Commit
551819aa
authored
8 years ago
by
Hahn, Steven
Browse files
Options
Downloads
Patches
Plain Diff
Fix compiler warnings on OS X Yosemite.
parent
1a6933f9
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MantidQt/CustomInterfaces/test/DataProcessorMockObjects.h
+9
-6
9 additions, 6 deletions
MantidQt/CustomInterfaces/test/DataProcessorMockObjects.h
with
9 additions
and
6 deletions
MantidQt/CustomInterfaces/test/DataProcessorMockObjects.h
+
9
−
6
View file @
551819aa
...
...
@@ -85,8 +85,10 @@ public:
private
:
// Calls we don't care about
const
std
::
map
<
std
::
string
,
QVariant
>
&
options
()
const
{
return
m_options
;
};
std
::
vector
<
DataProcessorCommand_uptr
>
publishCommands
()
{
const
std
::
map
<
std
::
string
,
QVariant
>
&
options
()
const
override
{
return
m_options
;
};
std
::
vector
<
DataProcessorCommand_uptr
>
publishCommands
()
override
{
std
::
vector
<
DataProcessorCommand_uptr
>
commands
;
for
(
size_t
i
=
0
;
i
<
26
;
i
++
)
commands
.
push_back
(
...
...
@@ -97,12 +99,13 @@ private:
return
std
::
set
<
std
::
string
>
();
};
// Calls we don't care about
void
setOptions
(
const
std
::
map
<
std
::
string
,
QVariant
>
&
){};
void
transfer
(
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>>
&
){};
void
setOptions
(
const
std
::
map
<
std
::
string
,
QVariant
>
&
)
override
{};
void
transfer
(
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>>
&
)
override
{};
void
setInstrumentList
(
const
std
::
vector
<
std
::
string
>
&
,
const
std
::
string
&
){};
const
std
::
string
&
)
override
{};
// void accept(WorkspaceReceiver *) {};
void
acceptViews
(
DataProcessorView
*
,
ProgressableView
*
){};
void
acceptViews
(
DataProcessorView
*
,
ProgressableView
*
)
override
{};
std
::
map
<
std
::
string
,
QVariant
>
m_options
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment