Made byte_orderer copyable.

This commit is contained in:
Davis King 2012-02-28 18:44:27 -05:00
parent 159c2bbe91
commit e0ab095422
2 changed files with 0 additions and 12 deletions

View File

@ -164,11 +164,6 @@ namespace dlib
}
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

View File

@ -142,13 +142,6 @@ namespace dlib
to host byte order.
!*/
private:
// restricted functions
byte_orderer(const byte_orderer&); // copy constructor
byte_orderer& operator=(const byte_orderer&); // assignment operator
};
}