Skip to content
Snippets Groups Projects
Select Git revision
  • 53f60347155b357bb68f68b817fe00f083ff3677
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

.clang-format

Blame
  • .clang-format 905 B
    ---
    Language: Cpp
    BasedOnStyle: LLVM
    AccessModifierOffset: -4
    AlignConsecutiveAssignments: false
    AlignConsecutiveDeclarations: false
    AlignOperands: false
    AlignTrailingComments: false
    AlwaysBreakTemplateDeclarations: Yes
    BraceWrapping: 
      AfterCaseLabel: true
      AfterClass: true
      AfterControlStatement: true
      AfterEnum: true
      AfterFunction: true
      AfterNamespace: true
      AfterStruct: true
      AfterUnion: true
      AfterExternBlock: false
      BeforeCatch: true
      BeforeElse: true
      BeforeLambdaBody: true
      BeforeWhile: true
      SplitEmptyFunction: true
      SplitEmptyRecord: true
      SplitEmptyNamespace: true
    BreakBeforeBraces: Custom
    BreakConstructorInitializers: AfterColon
    ColumnLimit: 120
    SortIncludes: false
    PointerAlignment: Left
    IndentCaseBlocks: true
    IndentWidth: 4
    MacroBlockBegin: ''
    MacroBlockEnd: ''
    MaxEmptyLinesToKeep: 2
    NamespaceIndentation: All
    SpacesInAngles: false
    TabWidth: 4
    UseTab: Always
    ...