added clang format and deconstructor files

_xeroxz
IDontCode 3 years ago
parent 3b0804402b
commit 9396f9e986

@ -0,0 +1,18 @@
---
BasedOnStyle: Microsoft
AlignAfterOpenBracket: Align
AllowAllArgumentsOnNextLine: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'true'
AllowShortIfStatementsOnASingleLine: Never
BreakBeforeBraces: Allman
IndentWidth: '4'
Language: Cpp
NamespaceIndentation: All
SpacesInAngles: 'true'
SpacesInCStyleCastParentheses: 'true'
SpacesInContainerLiterals: 'true'
SpacesInParentheses: 'true'
SpacesInSquareBrackets: 'true'
UseTab: Never
...

@ -0,0 +1,10 @@
#include <cstdint>
namespace llo::s1
{
class dctor_base_t
{
public:
dctor_base_t();
};
}
Loading…
Cancel
Save