mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-24 08:38:29 -05:00
(clang-format) Add EmptyLineBeforeAccessModifier (#300)
This commit is contained in:
parent
1d3ce6b0aa
commit
db77350169
4 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,7 @@ BraceWrapping:
|
|||
AfterStruct: false
|
||||
ConstructorInitializerIndentWidth: 4
|
||||
ContinuationIndentWidth: 4
|
||||
EmptyLineBeforeAccessModifier: Always
|
||||
IncludeBlocks: Regroup
|
||||
IndentAccessModifiers: false
|
||||
IndentWidth: 4
|
||||
|
|
|
@ -11,6 +11,7 @@ class LegoObjectFactory : public MxObjectFactory {
|
|||
LegoObjectFactory();
|
||||
virtual MxCore* Create(const char* p_name) override; // vtable 0x14
|
||||
virtual void Destroy(MxCore* p_object) override; // vtable 0x18
|
||||
|
||||
private:
|
||||
#define X(V) MxAtomId m_id##V;
|
||||
FOR_LEGOOBJECTFACTORY_OBJECTS(X)
|
||||
|
|
|
@ -26,6 +26,7 @@ class LegoPalettePresenter : public MxVideoPresenter {
|
|||
}
|
||||
|
||||
virtual void Destroy() override; // vtable+0x38
|
||||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool p_fromDestructor);
|
||||
|
|
|
@ -38,6 +38,7 @@ class MxObjectFactory : public MxCore {
|
|||
|
||||
virtual MxCore* Create(const char* p_name); // vtable 0x14
|
||||
virtual void Destroy(MxCore* p_object); // vtable 0x18
|
||||
|
||||
private:
|
||||
#define X(V) MxAtomId m_id##V;
|
||||
FOR_MXOBJECTFACTORY_OBJECTS(X)
|
||||
|
|
Loading…
Reference in a new issue