Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
216f614b
Commit
216f614b
authored
Mar 24, 2020
by
Nick Draper
Browse files
remove unused boolean isExecuted variable
parent
ad1976ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Framework/API/inc/MantidAPI/Algorithm.h
View file @
216f614b
...
...
@@ -463,7 +463,6 @@ private:
std
::
atomic
<
ExecutionState
>
m_executionState
;
///< the current execution state
std
::
atomic
<
ResultState
>
m_resultState
;
///< the current result State
bool
m_isExecuted
;
///< Algorithm is executed flag
bool
m_isChildAlgorithm
;
///< Algorithm is a child algorithm
bool
m_recordHistoryForChild
;
///< Flag to indicate whether history should be
/// recorded. Applicable to child algs only
...
...
Framework/API/src/Algorithm.cpp
View file @
216f614b
...
...
@@ -99,7 +99,7 @@ Algorithm::Algorithm()
m_log
(
"Algorithm"
),
g_log
(
m_log
),
m_groupSize
(
0
),
m_executeAsync
(
nullptr
),
m_notificationCenter
(
nullptr
),
m_progressObserver
(
nullptr
),
m_executionState
(
ExecutionState
::
Uninitialized
),
m_resultState
(
ResultState
::
NotFinished
),
m_isExecuted
(
false
),
m_resultState
(
ResultState
::
NotFinished
),
m_isChildAlgorithm
(
false
),
m_recordHistoryForChild
(
false
),
m_alwaysStoreInADS
(
true
),
m_runningAsync
(
false
),
m_rethrow
(
false
),
m_isAlgStartupLoggingEnabled
(
true
),
m_startChildProgress
(
0.
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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