From 7fb3514d29cef16a5fc64349039a31cda80f6e57 Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Thu, 20 Dec 2018 17:07:22 -0800 Subject: [PATCH] undo tests --- src/hb-cff-interp-common.hh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/hb-cff-interp-common.hh b/src/hb-cff-interp-common.hh index 64ec59f1a..80857aec1 100644 --- a/src/hb-cff-interp-common.hh +++ b/src/hb-cff-interp-common.hh @@ -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