diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-26 09:09:43 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-26 09:09:43 +0100 |
commit | bb605f416f9dd5e89150e8937d17c6647fcfe346 (patch) | |
tree | 634a9173272ea0ca00b960aededee6e0a8065bdc | |
parent | 3566dc23946b798b396946297cbf70f2d46fd242 (diff) |
api/shortcuts: remove pointless "friend" declarations
-rw-r--r-- | opentrack/keybinding-worker.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/opentrack/keybinding-worker.hpp b/opentrack/keybinding-worker.hpp index 054182e7..5b669331 100644 --- a/opentrack/keybinding-worker.hpp +++ b/opentrack/keybinding-worker.hpp @@ -63,7 +63,6 @@ private: public: class Token { - friend class KeybindingWorker; fun* pos; //Token(const Token&) = delete; Token& operator=(Token&) = delete; @@ -77,7 +76,6 @@ public: make().remove_receiver(pos); } }; - friend class Token; static Token add_receiver(fun receiver) { return Token(receiver); |