diff options
Diffstat (limited to 'Libraries/LibThread/BackgroundAction.h')
-rw-r--r-- | Libraries/LibThread/BackgroundAction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibThread/BackgroundAction.h b/Libraries/LibThread/BackgroundAction.h index b7b5b0810c..76de180cd7 100644 --- a/Libraries/LibThread/BackgroundAction.h +++ b/Libraries/LibThread/BackgroundAction.h @@ -46,7 +46,7 @@ class BackgroundActionBase { friend class BackgroundAction; private: - BackgroundActionBase() {} + BackgroundActionBase() { } static Lockable<Queue<Function<void()>>>& all_actions(); static Thread& background_thread(); @@ -65,7 +65,7 @@ public: return adopt(*new BackgroundAction(move(action), move(on_complete))); } - virtual ~BackgroundAction() {} + virtual ~BackgroundAction() { } private: BackgroundAction(Function<Result()> action, Function<void(Result)> on_complete) |