std::gslice_array<T>::gslice_array
From cppreference.com
| (1) | ||
private:
gslice_array();
|
(until C++11) | |
public:
gslice_array() = delete;
|
(since C++11) | |
public:
gslice_array( const gslice_array& other );
|
(2) | |
1) The default constructor is declared private and not defined(until C++11)explicitly defined as deleted(since C++11):
gslice_array is not DefaultConstructible.2) Constructs a
gslice_array from another gslice_array other.