add Relazione falsa e inizio file

This commit is contained in:
PanSi21 2026-01-08 14:52:33 +01:00
parent 2775cc2108
commit 3de21f2577
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 198E46F625BADD13
33 changed files with 5944 additions and 2868 deletions

View file

@ -4,12 +4,9 @@
# See http://clang.llvm.org/docs/ClangFormatStyleOptions.html
# Tested with: clang-format version 3.7.1
AlignConsecutiveAssignments:
Enabled: true
AcrossEmptyLines: true
AcrossComments: false
AlignConsecutiveDeclarations:
# Allineamento Macro
AlignConsecutiveMacros:
Enabled: true
AcrossEmptyLines: true
AcrossComments: false
@ -67,7 +64,7 @@ Language: Cpp
Standard: Cpp11
# Pointer and reference alignment style. Possible values: Left, Right, Middle.
PointerAlignment: Left
PointerAlignment: Right
# AccessModifierOffset (int)
# The extra indent or outdent of access modifiers, e.g. public:.
@ -379,7 +376,7 @@ SpaceBeforeAssignmentOperators: true
# SBPO_Never (in configuration: Never) Never put a space before opening parentheses.
# SBPO_ControlStatements (in configuration: ControlStatements) Put a space before opening parentheses only after control statement keywords (for/if/while...).
# SBPO_Always (in configuration: Always) Always put a space before opening parentheses, except when its prohibited by the syntax rules (in function-like macro definitions) or when determined by other style rules (after unary operators, opening parentheses, etc.)
SpaceBeforeParens: Always
SpaceBeforeParens: ControlStatements
# SpaceInEmptyParentheses (bool)
# If true, spaces may be inserted into ().