diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-04-08 22:02:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-08 22:02:23 -0700 |
| commit | 93e09e7ee55f7193cb7be6c1279d07aad4dc08b4 (patch) | |
| tree | 5c3580b913c4aa81aca0101d984dc58d3f1987ca /py | |
| parent | 9672f3891efb5419977b378938971f8cf9dde882 (diff) | |
| parent | 1e87a785b925657c5ab8fe14e76509debca663a3 (diff) | |
Merge pull request #738 from dhalbert/3.0_hid
3.0 hid
Diffstat (limited to 'py')
| -rw-r--r-- | py/objtuple.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/py/objtuple.h b/py/objtuple.h index bcf0c9ed4..7f20ab7b6 100644 --- a/py/objtuple.h +++ b/py/objtuple.h @@ -34,13 +34,6 @@ typedef struct _mp_obj_tuple_t { mp_obj_t items[]; } mp_obj_tuple_t; -// TODO(tannewt): Remove this when we no longer hard code the usb hid tuple. -typedef struct _mp_obj_tuple2_t { - mp_obj_base_t base; - size_t len; - mp_obj_t items[2]; -} mp_obj_tuple2_t; - typedef struct _mp_rom_obj_tuple_t { mp_obj_base_t base; size_t len; |
