-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable C++20 for all code. * Modernize code base. * Simplify enum interface. * Switch to clang-format based code formatting. * Switch to "not" instead of operator! * Switch to external catch2. * Switch to pragma once. * Use span instead of iterator pairs. * Adjust URLs.
- Loading branch information
1 parent
94460c4
commit 8927259
Showing
117 changed files
with
51,295 additions
and
65,743 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,37 @@ | ||
--- | ||
BasedOnStyle: LLVM | ||
AccessModifierOffset: -4 | ||
AlignConsecutiveAssignments: | ||
Enabled: true | ||
AlignCompound: true | ||
AlignConsecutiveBitFields: | ||
Enabled: true | ||
AlignConsecutiveDeclarations: | ||
Enabled: true | ||
AlignConsecutiveMacros: | ||
Enabled: true | ||
AlignConsecutiveShortCaseStatements: | ||
Enabled: true | ||
AlignCaseColons: true | ||
AllowShortBlocksOnASingleLine: Always | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortLoopsOnASingleLine: true | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BraceWrapping: | ||
BeforeCatch: true | ||
BeforeElse: true | ||
BreakBeforeBraces: Custom | ||
BreakConstructorInitializers: BeforeComma | ||
BreakInheritanceList: BeforeComma | ||
ColumnLimit: 120 | ||
IndentCaseLabels: true | ||
IndentRequiresClause: false | ||
IndentWidth: 4 | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
ObjCBlockIndentWidth: 4 | ||
PackConstructorInitializers: CurrentLine | ||
PointerAlignment: Left | ||
RequiresClausePosition: WithPreceding | ||
SpaceAfterCStyleCast: true | ||
TabWidth: 4 | ||
|
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
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
build* | ||
.vscode* | ||
CMakeLists.txt.user | ||
cmake-build* |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "libpotassco"] | ||
path = libpotassco | ||
url = https://github.com/potassco/libpotassco.git | ||
url = ../libpotassco.git |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.