Skip to content

Commit

Permalink
Merge pull request #863 from aschnell/master
Browse files Browse the repository at this point in the history
- coding style
  • Loading branch information
aschnell authored Jan 11, 2024
2 parents a26c41d + a9055d6 commit 321f0a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
4 changes: 1 addition & 3 deletions snapper/AsciiFile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,7 @@ namespace snapper
}


AsciiFileReader::~AsciiFileReader()
{
}
AsciiFileReader::~AsciiFileReader() = default;


bool
Expand Down
4 changes: 1 addition & 3 deletions snapper/File.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ namespace snapper
}


Files::~Files()
{
}
Files::~Files() = default;


void
Expand Down
8 changes: 2 additions & 6 deletions snapper/Snapshot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ namespace snapper
}


Snapshot::~Snapshot()
{
}
Snapshot::~Snapshot() = default;


// Directory containing the actual content of the snapshot.
Expand Down Expand Up @@ -240,9 +238,7 @@ namespace snapper
}


Snapshots::~Snapshots()
{
}
Snapshots::~Snapshots() = default;


void
Expand Down

0 comments on commit 321f0a2

Please sign in to comment.