mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-26 03:13:29 +04:00
syntax: Build C++ grammars as c++14
The haskell grammar requires at last c++14 to build. Fixes #117
This commit is contained in:
parent
8f78c0c612
commit
72eaaaac99
@ -63,7 +63,8 @@ fn build_cpp(files: Vec<String>, language: &str) {
|
||||
.include(PathBuf::from(file).parent().unwrap())
|
||||
.pic(true)
|
||||
.warnings(false)
|
||||
.cpp(true);
|
||||
.cpp(true)
|
||||
.flag("-std=c++14");
|
||||
}
|
||||
build.compile(&format!("tree-sitter-{}-cpp", language));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user