diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-06-06 15:37:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 15:37:51 +0200 |
commit | dbc8ec94464049311e69274cad562585d7bb6749 (patch) | |
tree | 3f0580a30098f12aa0eb2749f588b503156a8ac6 /src/tree_sitter/alloc.h | |
parent | 39f802bef4fa211349bc1489770645608466a378 (diff) | |
parent | 6b949211a06e21af67bf4cb3a20c6f87c932ef2a (diff) | |
download | rneovim-dbc8ec94464049311e69274cad562585d7bb6749.tar.gz rneovim-dbc8ec94464049311e69274cad562585d7bb6749.tar.bz2 rneovim-dbc8ec94464049311e69274cad562585d7bb6749.zip |
Merge pull request #12321 from vigoux/treesitter-runtime
treesitter: update runtime
Diffstat (limited to 'src/tree_sitter/alloc.h')
-rw-r--r-- | src/tree_sitter/alloc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 2229995bd1..d3c6b5eca8 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -51,6 +51,7 @@ static inline void ts_free(void *buffer) { #include <stdlib.h> static inline bool ts_toggle_allocation_recording(bool value) { + (void)value; return false; } |