Skip to content

Commit

Permalink
Remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
MiKom committed Jul 24, 2024
1 parent 5468592 commit cd9cdbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KDUtils/file_mapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using WriteMap = mio::basic_mmap<mio::access_mode::write, uint8_t>;
struct FileMapper::Map {
std::variant<ReadMap, WriteMap> map;

~Map() {};
~Map() { }

Map(bool writeable)
{
Expand Down

0 comments on commit cd9cdbb

Please sign in to comment.