gleam-lang / tree-sitter-gleam

🌳 A tree-sitter grammar for the Gleam programming language
Apache License 2.0
71 stars 13 forks source link

Ensure external_scanner_scan returns false for unrecognized tokens #33

Closed patrickt closed 2 years ago

patrickt commented 2 years ago

I noticed that clang++ warned here:

deps/tree-sitter-gleam/src/scanner.c:28:1: warning: non-void function does not return a value in all control paths

An explicit return fixes things up.

lpil commented 2 years ago

Thank you!