undo tests
This commit is contained in:
parent
e483232005
commit
7fb3514d29
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue