mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(format): tweak brace and type macro styles
This commit is contained in:
parent
b38b98bb7c
commit
f631bdac3b
4 changed files with 20 additions and 26 deletions
|
|
@ -6,19 +6,12 @@ AllowShortBlocksOnASingleLine: Never
|
||||||
AllowShortCaseLabelsOnASingleLine: false
|
AllowShortCaseLabelsOnASingleLine: false
|
||||||
AllowShortIfStatementsOnASingleLine: Never
|
AllowShortIfStatementsOnASingleLine: Never
|
||||||
AlwaysBreakTemplateDeclarations: Yes
|
AlwaysBreakTemplateDeclarations: Yes
|
||||||
BraceWrapping:
|
BreakBeforeBraces: Attach
|
||||||
AfterCaseLabel: false
|
|
||||||
AfterClass: false
|
|
||||||
AfterControlStatement: Never
|
|
||||||
AfterEnum: false
|
|
||||||
AfterFunction: false
|
|
||||||
AfterStruct: false
|
|
||||||
AfterUnion: false
|
|
||||||
BeforeElse: false
|
|
||||||
BreakBeforeTernaryOperators: true
|
BreakBeforeTernaryOperators: true
|
||||||
BreakConstructorInitializers: BeforeComma
|
BreakConstructorInitializers: BeforeComma
|
||||||
ColumnLimit: 0
|
ColumnLimit: 0
|
||||||
ContinuationIndentWidth: 4
|
ContinuationIndentWidth: 4
|
||||||
|
Cpp11BracedListStyle: false
|
||||||
DeriveLineEnding: false
|
DeriveLineEnding: false
|
||||||
DerivePointerAlignment: false
|
DerivePointerAlignment: false
|
||||||
IncludeBlocks: Merge
|
IncludeBlocks: Merge
|
||||||
|
|
@ -50,5 +43,6 @@ SpacesInCStyleCastParentheses: false
|
||||||
SpacesInConditionalStatement: false
|
SpacesInConditionalStatement: false
|
||||||
Standard: c++11
|
Standard: c++11
|
||||||
TabWidth: 4
|
TabWidth: 4
|
||||||
|
TypenameMacros: ['STORM_EXPLICIT_LIST', 'STORM_LIST']
|
||||||
UseCRLF: false
|
UseCRLF: false
|
||||||
UseTab: Never
|
UseTab: Never
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
#ifndef STORM_ARRAY_TS_FIXED_ARRAY_HPP
|
#ifndef STORM_ARRAY_TS_FIXED_ARRAY_HPP
|
||||||
#define STORM_ARRAY_TS_FIXED_ARRAY_HPP
|
#define STORM_ARRAY_TS_FIXED_ARRAY_HPP
|
||||||
|
|
||||||
#include "storm/array/TSBaseArray.hpp"
|
|
||||||
#include "storm/Memory.hpp"
|
#include "storm/Memory.hpp"
|
||||||
|
#include "storm/array/TSBaseArray.hpp"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue