Skip to content
Snippets Groups Projects
Commit d4e59010 authored by Edward Brown's avatar Edward Brown
Browse files

Re #22048: Applied clang-format patch.

parent 310d3e61
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,8 @@ public: ...@@ -48,7 +48,8 @@ public:
using fit_function_simplex = double (*)(const gsl_vector *, void *); using fit_function_simplex = double (*)(const gsl_vector *, void *);
using fit_function = int (*)(const gsl_vector *, void *, gsl_vector *); using fit_function = int (*)(const gsl_vector *, void *, gsl_vector *);
using fit_function_df = int (*)(const gsl_vector *, void *, gsl_matrix *); using fit_function_df = int (*)(const gsl_vector *, void *, gsl_matrix *);
using fit_function_fdf = int (*)(const gsl_vector *, void *, gsl_vector *, gsl_matrix *); using fit_function_fdf = int (*)(const gsl_vector *, void *, gsl_vector *,
gsl_matrix *);
enum Algorithm { enum Algorithm {
ScaledLevenbergMarquardt, ScaledLevenbergMarquardt,
......
...@@ -101,7 +101,8 @@ public: ...@@ -101,7 +101,8 @@ public:
class WindowFactoryImpl final { class WindowFactoryImpl final {
private: private:
using AbstractFactory = AbstractProjectInstantiator<MantidQt::API::IProjectSerialisable>; using AbstractFactory =
AbstractProjectInstantiator<MantidQt::API::IProjectSerialisable>;
public: public:
WindowFactoryImpl(); WindowFactoryImpl();
...@@ -172,7 +173,8 @@ private: ...@@ -172,7 +173,8 @@ private:
} }
/// A typedef for the map of registered classes /// A typedef for the map of registered classes
using FactoryMap = Mantid::Kernel::CaseInsensitiveMap<std::unique_ptr<AbstractFactory> >; using FactoryMap =
Mantid::Kernel::CaseInsensitiveMap<std::unique_ptr<AbstractFactory>>;
/// The map holding the registered class names and their instantiators /// The map holding the registered class names and their instantiators
FactoryMap _map; FactoryMap _map;
}; };
......
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