Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 30, 2024
1 parent c6d27fa commit d27a8b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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
7 changes: 3 additions & 4 deletions src/KDFoundation/platform/abstract_platform_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@

namespace KDFoundation {

class KDFOUNDATION_API AbstractPlatformTimer
{
public:
virtual ~AbstractPlatformTimer() { }
class KDFOUNDATION_API AbstractPlatformTimer{
public :
virtual ~AbstractPlatformTimer(){}
};

} // namespace KDFoundation

0 comments on commit d27a8b4

Please sign in to comment.