aboutsummaryrefslogtreecommitdiff
path: root/py/mpstate.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-03-24 18:43:28 +1100
committerDamien George <damien.p.george@gmail.com>2017-03-24 18:43:28 +1100
commit64a4f11b2d6f880aa6fb1aaa10b2603d3faa1cd0 (patch)
tree1f9c5e8a937999ea83140f5f6eb05132fdfb134f /py/mpstate.h
parent707f16b05c663ec3bdaf0ab0713e349638acd0fe (diff)
py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).
MP_STATE_CTX was recently aliased to MP_STATE_THREAD and can now be removed.
Diffstat (limited to 'py/mpstate.h')
-rw-r--r--py/mpstate.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/mpstate.h b/py/mpstate.h
index 29f93870a..0134dd8e8 100644
--- a/py/mpstate.h
+++ b/py/mpstate.h
@@ -238,7 +238,6 @@ typedef struct _mp_state_ctx_t {
extern mp_state_ctx_t mp_state_ctx;
-#define MP_STATE_CTX(x) MP_STATE_THREAD(x)
#define MP_STATE_VM(x) (mp_state_ctx.vm.x)
#define MP_STATE_MEM(x) (mp_state_ctx.mem.x)