-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into kelvin_script_update
- Loading branch information
Showing
109 changed files
with
11,638 additions
and
12,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
Language: Cpp | ||
BasedOnStyle: Google | ||
ColumnLimit: 120 | ||
BreakAfterAttributes: Never |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,32 @@ | ||
CompileFlags: | ||
# to make the compilation database, pip install compiledb, then run: | ||
# compiledb -n --full-path make TESTMODE=ON | ||
# make clean && compiledb -n --full-path make TESTMODE=ON | ||
# or brew install bear, then: | ||
# make clean && bear -- make TESTMODE=ON | ||
CompilationDatabase: compile_commands.json | ||
Add: [-DMPI_ON=true, -std=c++20] | ||
Add: [-xc++, -std=c++23, -DTESTMODE=true] | ||
|
||
Diagnostics: | ||
ClangTidy: | ||
FastCheckFilter: None | ||
UnusedIncludes: Strict | ||
MissingIncludes: Strict | ||
Includes: | ||
# std::ranges::upper_bound is triggering warning to include a private libc++ header __algorithm/ranges_upper_bound.h | ||
# IgnoreHeader: '.*(ranges).*' | ||
IgnoreHeader: 'signal.h|(_).*(.h)|.*(__algorithm).*' | ||
AnalyzeAngledIncludes: true | ||
|
||
Completion: | ||
AllScopes: true | ||
#ArgumentListsPolicy: None # added to LLVM 20? | ||
|
||
InlayHints: | ||
BlockEnd: true | ||
Designators: true | ||
Enabled: true | ||
ParameterNames: true | ||
DeducedTypes: false | ||
|
||
Hover: | ||
ShowAKA: Yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ Makefile text eol=lf | |
*.jpg binary | ||
*.gz binary | ||
*.xz binary | ||
*.zst binary | ||
*.zstd binary |
Oops, something went wrong.