aboutsummaryrefslogtreecommitdiff
path: root/py/lexer.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-12-22 10:49:54 +1100
committerDamien George <damien.p.george@gmail.com>2016-12-22 10:49:54 +1100
commitc305ae32436e37327d33df979d57d9ac1fb822c1 (patch)
tree3c2aa1226eac6f12509c3da88ffe8d3d654c7f06 /py/lexer.h
parentf4aebafe7ae033d6bcde87d71108f488ed4a3251 (diff)
py/lexer: Permanently disable the mp_lexer_show_token function.
The lexer is very mature and this debug function is no longer used. If it's really needed one can uncomment it and recompile.
Diffstat (limited to 'py/lexer.h')
-rw-r--r--py/lexer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/lexer.h b/py/lexer.h
index 1461f9c8c..32aef9626 100644
--- a/py/lexer.h
+++ b/py/lexer.h
@@ -172,7 +172,6 @@ mp_lexer_t *mp_lexer_new_from_str_len(qstr src_name, const char *str, mp_uint_t
void mp_lexer_free(mp_lexer_t *lex);
void mp_lexer_to_next(mp_lexer_t *lex);
-void mp_lexer_show_token(const mp_lexer_t *lex);
/******************************************************************/
// platform specific import function; must be implemented for a specific port