std::indirect_array<T>::indirect_array
From cppreference.com
| (1) | ||
private:
indirect_array();
|
(until C++11) | |
public:
indirect_array() = delete;
|
(since C++11) | |
public:
indirect_array( const indirect_array& other );
|
(2) | |
1) The default constructor is declared private and not defined(until C++11)explicitly defined as deleted(since C++11):
indirect_array is not DefaultConstructible.2) Constructs a
indirect_array from another indirect_array other.Parameters
| other | - | indirect_array to initialize with
|
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
