From 675d1c9c600224820f49f912e4ff7d6cf2f97711 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 15 Aug 2016 11:02:59 +1000 Subject: ports: Remove typedef of machine_ptr_t, it's no longer needed. This type was used only for the typedef of mp_obj_t, which is now defined by the object representation. So we can now remove this unused typedef, to simplify the mpconfigport.h file. --- minimal/mpconfigport.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'minimal') diff --git a/minimal/mpconfigport.h b/minimal/mpconfigport.h index 165b05879..fc696c77e 100644 --- a/minimal/mpconfigport.h +++ b/minimal/mpconfigport.h @@ -65,8 +65,6 @@ typedef int mp_int_t; // must be pointer size typedef unsigned mp_uint_t; // must be pointer size -typedef void *machine_ptr_t; // must be of pointer size -typedef const void *machine_const_ptr_t; // must be of pointer size typedef long mp_off_t; #define MP_PLAT_PRINT_STRN(str, len) mp_hal_stdout_tx_strn_cooked(str, len) -- cgit v1.2.3