diff options
| author | Vicent Marti <tanoku@gmail.com> | 2016-05-30 16:07:07 +0200 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-06 15:39:06 -0700 | 
| commit | f39eaefb651064ea6b4b8f030ec98f98c94fe95a (patch) | |
| tree | 91028c68ef9b83c58ca85545cddaa4839e170ba2 /src/node.h | |
| parent | 8e11c6d7a2f43bd507cc0349843c6fde8392eccb (diff) | |
node: Memory diet
Reduce the storage size for the `cmark_code` struct
Diffstat (limited to 'src/node.h')
| -rw-r--r-- | src/node.h | 7 | 
1 files changed, 3 insertions, 4 deletions
| @@ -25,11 +25,10 @@ typedef struct {  typedef struct {    cmark_chunk info;    cmark_chunk literal; -  int fence_length; -  /* fence_offset must be 0-3, so we can use int8_t */ -  int8_t fence_offset; +  uint8_t fence_length; +  uint8_t fence_offset;    unsigned char fence_char; -  bool fenced; +  int8_t fenced;  } cmark_code;  typedef struct { | 
