Removed deleted constructors and assignment operator

This commit is contained in:
John Wellbelove 2020-04-30 12:23:33 +01:00
parent 890178ce51
commit a3d267c2db

View File

@ -37,11 +37,6 @@ namespace etl
template <size_t N>
class null_type
{
private:
null_type();
null_type(const null_type&);
null_type& operator=(const null_type&);
};
}