commit | 94e72cf1c9af563fbf522efb7f2e0b1fcd616418 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Mon Dec 17 00:06:40 2018 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Mon Dec 17 00:06:40 2018 -0500 |
tree | 80bd0d38d36e776afab28b1b4b9969efa3bc5b3a | |
parent | 68d4a5eee0f248891d20d69b897201d105951aef [diff] [blame] |
[array] Add operator *
diff --git a/src/hb-array.hh b/src/hb-array.hh index ddeef0d..523e4ce 100644 --- a/src/hb-array.hh +++ b/src/hb-array.hh
@@ -65,6 +65,8 @@ Type * operator & (void) const { return arrayZ; } + Type & operator * (void) { return (this->operator [])[0]; } + hb_array_t<Type> & operator += (unsigned int count) { if (unlikely (count > len))