Commit e0ab0954 authored by Davis King's avatar Davis King

Made byte_orderer copyable.

parent 159c2bbe
...@@ -164,11 +164,6 @@ namespace dlib ...@@ -164,11 +164,6 @@ namespace dlib
} }
bool little_endian; bool little_endian;
// restricted functions
byte_orderer(const byte_orderer&); // copy constructor
byte_orderer& operator=(const byte_orderer&); // assignment operator
}; };
// make flip not do anything at all for chars // make flip not do anything at all for chars
......
...@@ -142,13 +142,6 @@ namespace dlib ...@@ -142,13 +142,6 @@ namespace dlib
to host byte order. to host byte order.
!*/ !*/
private:
// restricted functions
byte_orderer(const byte_orderer&); // copy constructor
byte_orderer& operator=(const byte_orderer&); // assignment operator
}; };
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment