Skip to content
Snippets Groups Projects
Commit a702b44a authored by Verena Reimund's avatar Verena Reimund
Browse files

Applied clang formatting

Refs #22083
parent 762ae101
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,7 @@ void CreateWorkspace::exec() { ...@@ -169,7 +169,7 @@ void CreateWorkspace::exec() {
if (!dX.empty()) { if (!dX.empty()) {
if (dX.size() != dataY.size()) if (dX.size() != dataY.size())
throw std::runtime_error("Dx must have the same size as DataY"); throw std::runtime_error("Dx must have the same size as DataY");
histogramBuilder.setDx(ySize); histogramBuilder.setDx(ySize);
} }
......
...@@ -51,7 +51,7 @@ public: ...@@ -51,7 +51,7 @@ public:
m_e = Kernel::make_cow<HistogramE>(std::forward<T>(data)...); m_e = Kernel::make_cow<HistogramE>(std::forward<T>(data)...);
} }
/// Sets Dx information. Can be a length or actual Dx data. /// Sets Dx information. Can be a length or actual Dx data.
template <typename... T> void setDx(T &&... data){ template <typename... T> void setDx(T &&... data) {
d_x = Kernel::make_cow<HistogramDx>(std::forward<T>(data)...); d_x = Kernel::make_cow<HistogramDx>(std::forward<T>(data)...);
} }
void setDistribution(bool isDistribution); void setDistribution(bool isDistribution);
......
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