Reworked memory model.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-12-11 14:58:16 +01:00
parent ea97089e23
commit 0e6ae18a32
7 changed files with 356 additions and 16 deletions

11
.clang-tidy Normal file
View File

@@ -0,0 +1,11 @@
Checks: 'readability-*,clang-diagnostic-*,clang-analyzer-*,-clang-analyzer-alpha*,performance-*,cppcoreguidelines-*,
bugprone-*,modernize-*,-modernize-use-trailing-return-type'
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberCase
value: camelBack
- key: readability-identifier-naming.PrivateMemberPrefix
value: '_'