add Chapter05/gsm_lib

This commit is contained in:
Amar Mahmutbegovic
2024-05-19 23:48:23 +02:00
parent 5d93a88205
commit 19c06fe786
195 changed files with 302229 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
Checks: >
-*,
bugprone-*,
misc-*,
clang-analyzer-*,
modernize-*,
-modernize-use-trailing-return-type,
performance-*,
portability-*,
readability-*,
readability-identifier-naming
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: lower_case }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.MethodCase, value: lower_case }
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: c_ }
ExtraArgs:
- -std=c++20