Remove unnecessary conditional

This commit is contained in:
Max Brunsfeld 2015-08-16 10:54:02 -07:00
parent d910a2d0e7
commit 3e17172f6e
3 changed files with 9 additions and 12 deletions

View file

@ -7,8 +7,4 @@
TSNode ts_node_make(const TSTree *, TSLength);
static inline TSNode ts_node_null() {
return (TSNode){.data = NULL, .offset = ts_length_zero() };
}
#endif