From e60835bac5336c8e0123443b427c6db48b5060df Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 19 Sep 2016 13:18:54 +1000 Subject: [PATCH] py/qstr: Remove a comment. qstrs are always null terminated so qstr_str will stay as part of the API. --- py/qstr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/py/qstr.c b/py/qstr.c index 079b2a8e7e..28df06ca3d 100644 --- a/py/qstr.c +++ b/py/qstr.c @@ -275,7 +275,6 @@ size_t qstr_len(qstr q) { return Q_GET_LENGTH(qd); } -// XXX to remove! const char *qstr_str(qstr q) { const byte *qd = find_qstr(q); return (const char*)Q_GET_DATA(qd);