Skip to content
Snippets Groups Projects
Commit de250239 authored by Evgeny Kusmenko's avatar Evgeny Kusmenko
Browse files

Update utility.h

parent fbd3fd8e
No related branches found
No related tags found
No related merge requests found
Pipeline #186868 failed
......@@ -200,7 +200,6 @@ class Array {
//*
Array( const Array &x ) = delete;
Array &operator=( const Array &x ) = delete;
//*/
/*/
Array( const Array &x ) : m_size( 0 ) {
copy( x );
......@@ -209,6 +208,7 @@ class Array {
copy( x );
return *this;
}
//*/
void drop() {
data.reset();
m_size = 0;
......
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