undo tests

This commit is contained in:
Michiharu Ariza 2018-12-20 17:07:22 -08:00
parent e483232005
commit 7fb3514d29
1 changed files with 0 additions and 11 deletions

View File

@ -302,23 +302,12 @@ struct byte_str_t : hb_ubytes_t
{
byte_str_t ()
: hb_ubytes_t () {}
byte_str_t (const byte_str_t &bs)
: hb_ubytes_t (bs) {}
byte_str_t (const UnsizedByteStr& s, unsigned int l)
: hb_ubytes_t ((const unsigned char*)&s, l) {}
byte_str_t (const unsigned char *s, unsigned int l)
: hb_ubytes_t (s, l) {}
byte_str_t (const hb_ubytes_t &ub) /* conversion from hb_ubytes_t */
: hb_ubytes_t (ub) {}
/* Destructor */
~byte_str_t () {}
/* Copy assignment operator */
byte_str_t &operator=(const byte_str_t &bs)
{
return *this; /* test */
}
/* sub-string */
byte_str_t sub_str (unsigned int offset, unsigned int len_) const