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

disallow empty axes

parent ca510e6d
No related branches found
No related tags found
1 merge request!886Powerfield now inherits from IField; new c'tors
......@@ -264,6 +264,7 @@ template <class T>
Powerfield<T>::Powerfield(const IAxis& xAxis)
: IField({xAxis.clone()})
{
ASSERT(xAxis.size() > 0);
allocate();
}
......@@ -271,6 +272,8 @@ template <class T>
Powerfield<T>::Powerfield(const IAxis& xAxis, const IAxis& yAxis)
: IField({xAxis.clone(), yAxis.clone()})
{
ASSERT(xAxis.size() > 0);
ASSERT(yAxis.size() > 0);
allocate();
}
......@@ -336,10 +339,9 @@ template <class T>
void Powerfield<T>::addAxis(const IAxis& new_axis)
{
ASSERT(!axisNameExists(new_axis.axisName()));
if (new_axis.size() > 0) {
m_axes.emplace_back(new_axis.clone());
allocate();
}
ASSERT(new_axis.size() > 0);
m_axes.emplace_back(new_axis.clone());
allocate();
}
template <class T>
......
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