Skip to content

Commit

Permalink
Tidy the code format for Mile.Helpers.CppBase.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Sep 17, 2024
1 parent a9d23ee commit d2339eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Mile.Helpers/Mile.Helpers.CppBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,12 @@ namespace Mile
class DisableCopyConstruction
{
protected:

DisableCopyConstruction() = default;
~DisableCopyConstruction() = default;

private:

DisableCopyConstruction(
const DisableCopyConstruction&) = delete;
DisableCopyConstruction& operator=(
Expand All @@ -116,10 +118,12 @@ namespace Mile
class DisableMoveConstruction
{
protected:

DisableMoveConstruction() = default;
~DisableMoveConstruction() = default;

private:

DisableMoveConstruction(
const DisableMoveConstruction&&) = delete;
DisableMoveConstruction& operator=(
Expand All @@ -137,6 +141,7 @@ namespace Mile
DisableMoveConstruction
{
private:

bool m_Canceled;
TaskHandlerType m_TaskHandler;

Expand Down

0 comments on commit d2339eb

Please sign in to comment.