diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-01-03 22:08:38 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-03 22:08:38 -0800 |
commit | 60b6962db0b0488667180e11cc6cfb1cec1b41ea (patch) | |
tree | 9f3d399e48b781b5e363b47a2aa04e2b758e331c /src/buffer.h | |
parent | cc50a3aba3e34dc58ca819a65b907871e2ea6fd9 (diff) |
Revert "Change types for source map offsets (#174)"
This reverts commit 4fbe344df43ed7f60a3d3a53981088334cb709fc.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/buffer.h b/src/buffer.h index 7f31a74..e878075 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -13,28 +13,8 @@ extern "C" { #endif -#ifndef CMARK_HUGE_DOCS - -// Maximum strbuf size without terminating NUL byte. -#define BUFSIZE_MAX (INT32_MAX - 1) - typedef int32_t bufsize_t; -#else // CMARK_HUGE_DOCS - -// This is an untested proof of concept of how to handle multi-gigabyte -// documents on 64-bit platforms at the expense of internal struct sizes. - -#ifdef PTRDIFF_MAX - #define BUFSIZE_MAX (PTRDIFF_MAX - 1) -#else - #define BUFSIZE_MAX (ptrdiff_t)((size_t)-1 / 2) -#endif - -typedef ptrdiff_t bufsize_t; - -#endif // CMARK_HUGE_DOCS - typedef struct { cmark_mem *mem; unsigned char *ptr; |