Fix Windows build warning

pull/77/head
Jason Shirk 2021-12-06 16:31:01 +07:00 committed by Wilfred Hughes
parent 4529018d1d
commit ea055e6356
1 changed files with 1 additions and 1 deletions

@ -32,7 +32,7 @@ impl TreeSitterParser {
.flag_if_supported("-Wno-ignored-qualifiers");
if cfg!(windows) {
cpp_build.flag("/std=c++14");
cpp_build.flag("/std:c++14");
} else {
cpp_build.flag("--std=c++14");
}