forked from s00500/ESPUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request s00500#91 from enwi/master
Reduce HEAP usage
- Loading branch information
Showing
3 changed files
with
1,161 additions
and
943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
# Based on Webkit style | ||
BasedOnStyle: Webkit | ||
IndentWidth: 4 | ||
ColumnLimit: 120 | ||
--- | ||
Language: Cpp | ||
Standard: Cpp11 | ||
# Pointers aligned to the left | ||
DerivePointerAlignment: false | ||
PointerAlignment: Left | ||
AccessModifierOffset: -4 | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AlwaysBreakTemplateDeclarations: true | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterClass: true | ||
AfterControlStatement: true | ||
AfterEnum: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: true | ||
BeforeCatch: true | ||
BeforeElse: true | ||
SplitEmptyFunction: false | ||
SplitEmptyRecord: false | ||
SplitEmptyNamespace: false | ||
BreakConstructorInitializers: BeforeColon | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
ConstructorInitializerIndentWidth: 4 | ||
Cpp11BracedListStyle: true | ||
FixNamespaceComments: true | ||
IncludeBlocks: Regroup | ||
IncludeCategories: | ||
# C++ standard headers (no .h) | ||
- Regex: '<[[:alnum:]_-]+>' | ||
Priority: 1 | ||
# Extenal libraries (with .h) | ||
- Regex: '<[[:alnum:]_./-]+>' | ||
Priority: 2 | ||
# Headers from same folder | ||
- Regex: '"[[:alnum:]_.-]+"' | ||
Priority: 3 | ||
# Headers from other folders | ||
- Regex: '"[[:alnum:]_/.-]+"' | ||
Priority: 4 | ||
IndentCaseLabels: false | ||
NamespaceIndentation: All | ||
SortIncludes: true | ||
SortUsingDeclarations: true | ||
SpaceAfterTemplateKeyword: true | ||
SpacesInAngles: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
UseTab: Never |
Oops, something went wrong.