Skip to content
Snippets Groups Projects
Commit 4e417583 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove useless default constructor

parent 52860a57
No related branches found
No related tags found
1 merge request!63Feature/utils coverage
......@@ -27,7 +27,8 @@ class CastArray
}
PUGS_INLINE
CastDataType& operator[](size_t i) const
CastDataType&
operator[](size_t i) const
{
Assert(i < m_size);
return m_values[i];
......@@ -39,12 +40,6 @@ class CastArray
PUGS_INLINE
CastArray& operator=(CastArray&&) = default;
PUGS_INLINE
CastArray() : m_size(0), m_values(nullptr)
{
;
}
PUGS_INLINE
CastArray(const Array<DataType>& array)
: m_array(array),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment