Fix some C code that MSVC doesn't like

This commit is contained in:
Max Brunsfeld 2017-08-08 10:47:59 -07:00
parent 12623deb19
commit 3d351eac09
4 changed files with 7 additions and 9 deletions

View file

@ -104,7 +104,7 @@ void ts_document_edit(TSDocument *self, TSInputEdit edit) {
}
void ts_document_parse(TSDocument *self) {
return ts_document_parse_with_options(self, (TSParseOptions){
ts_document_parse_with_options(self, (TSParseOptions){
.halt_on_error = false,
.changed_ranges = NULL,
.changed_range_count = NULL,
@ -113,7 +113,7 @@ void ts_document_parse(TSDocument *self) {
void ts_document_parse_and_get_changed_ranges(TSDocument *self, TSRange **ranges,
uint32_t *range_count) {
return ts_document_parse_with_options(self, (TSParseOptions){
ts_document_parse_with_options(self, (TSParseOptions){
.halt_on_error = false,
.changed_ranges = ranges,
.changed_range_count = range_count,