diff options
Diffstat (limited to 'Swiften/EventLoop/Event.cpp')
-rw-r--r-- | Swiften/EventLoop/Event.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Swiften/EventLoop/Event.cpp b/Swiften/EventLoop/Event.cpp index f3ea228..15d7146 100644 --- a/Swiften/EventLoop/Event.cpp +++ b/Swiften/EventLoop/Event.cpp @@ -10,13 +10,13 @@ #include <typeinfo> std::ostream& operator<<(std::ostream& os, const Swift::Event& e) { - os << "Event(" << e.id << ","; - if (e.owner) { - os << typeid(*e.owner.get()).name(); - } - else { - os << "null"; - } - os << ")"; - return os; + os << "Event(" << e.id << ","; + if (e.owner) { + os << typeid(*e.owner.get()).name(); + } + else { + os << "null"; + } + os << ")"; + return os; } |