diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-06-20 12:57:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 12:57:27 (GMT) |
commit | 861efc6e8fe7f030b1e193989b13287b31385939 (patch) | |
tree | eed0da23760ca0c30bcb88ebd2c2f5e1cd43b347 /Parser/pegen.h | |
parent | 344c2a75c1c13de781962a3f80552e66a4c89024 (diff) | |
download | cpython-861efc6e8fe7f030b1e193989b13287b31385939.zip cpython-861efc6e8fe7f030b1e193989b13287b31385939.tar.gz cpython-861efc6e8fe7f030b1e193989b13287b31385939.tar.bz2 |
bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970)
Diffstat (limited to 'Parser/pegen.h')
-rw-r--r-- | Parser/pegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pegen.h b/Parser/pegen.h index 4316807..ef095dd 100644 --- a/Parser/pegen.h +++ b/Parser/pegen.h @@ -34,7 +34,7 @@ typedef struct _memo { typedef struct { int type; PyObject *bytes; - Py_ssize_t lineno, col_offset, end_lineno, end_col_offset; + int lineno, col_offset, end_lineno, end_col_offset; Memo *memo; } Token; |