aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/room.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.h b/lib/room.h
index 7216d625..500ac8ba 100644
--- a/lib/room.h
+++ b/lib/room.h
@@ -56,7 +56,7 @@ namespace QMatrixClient
const RoomEvent* event() const { return rawPtr(evt); }
const RoomEvent* get() const { return event(); }
template <typename EventT>
- const EventT* viewAs() const { return eventCast<const EventT*>(evt); }
+ const EventT* viewAs() const { return eventCast<const EventT>(evt); }
const RoomEventPtr& operator->() const { return evt; }
const RoomEvent& operator*() const { return *evt; }
index_t index() const { return idx; }