Removed line single comments bc no asni c lol

This commit is contained in:
Maieul BOYER 2024-05-02 15:02:38 +02:00
parent 9d8139e035
commit ebaa4dd822
No known key found for this signature in database
95 changed files with 107 additions and 99 deletions

View file

@ -46,6 +46,10 @@
uint32_t capacity; \
}
#ifndef inline
# define inline __inline__
#endif
/// Initialize an array.
#define array_init(self) \
((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL)
@ -1866,4 +1870,4 @@ t_parse_node ts_node_new(const t_first_tree *, const t_subtree *, t_length,
typedef uint64_t t_parser_clock;
typedef uint64_t t_parser_duration;
#endif // TREE_SITTER_TREE_H_
#endif // TREE_SITTER_TREE_H_