Skip to content
Snippets Groups Projects
Commit 2b6b87f4 authored by Matthew Andrew's avatar Matthew Andrew
Browse files

Applied clang format Re #23767

parent 8eda5c52
Branches 23767_ThreadModelFix
No related tags found
No related merge requests found
...@@ -334,15 +334,16 @@ template <typename BaseAlgorithm> void AlgorithmAdapter<BaseAlgorithm>::init() { ...@@ -334,15 +334,16 @@ template <typename BaseAlgorithm> void AlgorithmAdapter<BaseAlgorithm>::init() {
* overridden in the subclass by a function named PyExec * overridden in the subclass by a function named PyExec
*/ */
template <typename BaseAlgorithm> void AlgorithmAdapter<BaseAlgorithm>::exec() { template <typename BaseAlgorithm> void AlgorithmAdapter<BaseAlgorithm>::exec() {
try { try {
callMethod<void>(getSelf(), "PyExec"); callMethod<void>(getSelf(), "PyExec");
} catch (Mantid::PythonInterface::PythonException&) { } catch (Mantid::PythonInterface::PythonException &) {
if (BaseAlgorithm::getCancel()) throw Mantid::API::Algorithm::CancelException(); if (BaseAlgorithm::getCancel())
else throw; throw Mantid::API::Algorithm::CancelException();
} else
throw;
}
} }
//----------------------------------------------------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------------------------------------------------
// Concete instantiations (avoids definitions being all in the headers) // Concete instantiations (avoids definitions being all in the headers)
//----------------------------------------------------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment