Skip to content
Snippets Groups Projects
Commit c5eb6166 authored by Wuttke, Joachim's avatar Wuttke, Joachim Committed by Wuttke, Joachim
Browse files

rm preivious IAxis c'tor

parent 071a6fc8
No related branches found
No related tags found
1 merge request!1615simplify Bin1D and IAxis
...@@ -17,11 +17,6 @@ ...@@ -17,11 +17,6 @@
IAxis::~IAxis() = default; IAxis::~IAxis() = default;
IAxis::IAxis(std::string name)
: m_name(name)
{
}
IAxis::IAxis(std::string name, const std::vector<Bin1D>& bins) IAxis::IAxis(std::string name, const std::vector<Bin1D>& bins)
: m_name(name) : m_name(name)
, m_bins(bins) , m_bins(bins)
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
class IAxis { class IAxis {
public: public:
IAxis(std::string name);
IAxis(std::string name, const std::vector<Bin1D>& bins); IAxis(std::string name, const std::vector<Bin1D>& bins);
IAxis(const IAxis&) = delete; IAxis(const IAxis&) = delete;
IAxis(IAxis&&) = default; IAxis(IAxis&&) = default;
......
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