diff options
author | Damien George <damien.p.george@gmail.com> | 2016-09-19 13:18:54 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-09-19 13:18:54 +1000 |
commit | e60835bac5336c8e0123443b427c6db48b5060df (patch) | |
tree | 5ad6e05d13f8f854f01e229a932d99c2779105de | |
parent | 4874bde10428302eac848b3130e5076e685c7774 (diff) | |
download | micropython-e60835bac5336c8e0123443b427c6db48b5060df.tar.gz micropython-e60835bac5336c8e0123443b427c6db48b5060df.zip |
py/qstr: Remove a comment.
qstrs are always null terminated so qstr_str will stay as part of the API.
-rw-r--r-- | py/qstr.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); |