[cplusplus] Make .reference() return T*

This commit is contained in:
Behdad Esfahbod 2022-06-02 10:02:44 -06:00
parent 7e7a4a8f05
commit 4d646773cf
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ struct shared_ptr
bool operator != (const shared_ptr &o) { return p != o.p; }
static T* get_empty() { return v::get_empty (); }
void reference() { v::reference (p); }
T* reference() { return v::reference (p); }
void destroy() { v::destroy (p); }
void set_user_data (hb_user_data_key_t *key,
void *value,