Skip to content

Commit

Permalink
Run formatting on files
Browse files Browse the repository at this point in the history
  • Loading branch information
MiKom committed Jul 1, 2024
1 parent ac3c936 commit c90c672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/KDFoundation/event_receiver.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class KDFOUNDATION_API EventReceiver
public:
virtual ~EventReceiver() noexcept;

virtual void event(EventReceiver *target, Event *ev){};
virtual void event(EventReceiver *target, Event *ev) {};
};

} // namespace KDFoundation
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;

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

inline Map(bool writeable)
{
Expand Down

0 comments on commit c90c672

Please sign in to comment.