tree-sitter / tree-sitter-haskell

Haskell grammar for tree-sitter.
MIT License
152 stars 36 forks source link

add includes for MSVC #38

Closed lunixbochs closed 3 years ago

lunixbochs commented 3 years ago

#include <string> is needed for std::to_string() on MSVC. #include <iterator> is needed for back_inserter() on MSVC.

tek commented 3 years ago

thanks a lot!