-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename besselj support header to `armadillo_besselj_support.hpp`. Remove all commented out code. Configure the linter tool `clang-tidy`. Resolve the following linter warnings: - midpoints `x0 = (nx - 1) / 2` should use floating point division; - voxel count should have type `uint64_t`; - C++ namespace should use lower case naming style.
- Loading branch information
1 parent
40a29b3
commit a5a3b79
Showing
10 changed files
with
83 additions
and
29 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
Checks: >- | ||
bugprone-*, | ||
clang-analyzer-*, | ||
clang-diagnostic-*, | ||
google-*, | ||
modernize-*, | ||
performance-*, | ||
-readability-identifier-naming, | ||
-modernize-use-trailing-return-type | ||
WarningsAsErrors: '' | ||
HeaderFilterRegex: '.*' | ||
#AnalyzeTemporaryDtors: false | ||
FormatStyle: Google | ||
CheckOptions: | ||
- key: modernize-loop-convert.NamingStyle | ||
value: CamelCase | ||
- key: readability-identifier-naming.ClassCase | ||
value: CamelCase | ||
- key: readability-identifier-naming.FunctionCase | ||
value: camelBack | ||
- key: readability-identifier-naming.GlobalConstantCase | ||
value: UPPER_CASE | ||
- key: readability-identifier-naming.NamespaceCase | ||
value: lower_case | ||
- key: readability-identifier-naming.NamespacePrefix | ||
value: '' | ||
- key: readability-identifier-naming.NamespaceSuffix | ||
value: '' | ||
- key: readability-identifier-naming.StructCase | ||
value: lower_case | ||
- key: readability-identifier-naming.StructPrefix | ||
value: '' | ||
- key: readability-identifier-naming.StructSuffix | ||
value: '_t' | ||
- key: readability-identifier-naming.VariableCase | ||
value: lower_case | ||
- key: readability-identifier-naming.VariablePrefix | ||
value: '' | ||
- key: readability-identifier-naming.VariableSuffix | ||
value: '' | ||
... | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3rdparty/**/* |
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,5 @@ | ||
project('armadillo', 'cpp', | ||
version: '10.1.x', | ||
version: '14.1.x', | ||
) | ||
|
||
# Header-only library | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
option('install_examples', type: 'boolean', value: false) |
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