aboutsummaryrefslogtreecommitdiffhomepage
path: root/td/telegram/NotificationObjectFullId.h
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2025-10-23 13:05:53 +0300
committerlevlam <levlam@telegram.org>2025-10-23 13:05:53 +0300
commitcac0d034dcad16b9e069a31c2d4ef3ee9552d489 (patch)
tree010864f17902507b04ef64809858cf9adfa673c3 /td/telegram/NotificationObjectFullId.h
parentdd1b761fda7e47f4e0275c4d319f80a04db1997f (diff)
Improve parameter name.
Diffstat (limited to 'td/telegram/NotificationObjectFullId.h')
-rw-r--r--td/telegram/NotificationObjectFullId.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/td/telegram/NotificationObjectFullId.h b/td/telegram/NotificationObjectFullId.h
index 325d11c2c..b9102c391 100644
--- a/td/telegram/NotificationObjectFullId.h
+++ b/td/telegram/NotificationObjectFullId.h
@@ -46,15 +46,15 @@ struct NotificationObjectFullId {
};
struct NotificationObjectFullIdHash {
- uint32 operator()(NotificationObjectFullId full_notification_object_id) const {
- return combine_hashes(DialogIdHash()(full_notification_object_id.get_dialog_id()),
- NotificationObjectIdHash()(full_notification_object_id.get_notification_object_id()));
+ uint32 operator()(NotificationObjectFullId notification_object_full_id) const {
+ return combine_hashes(DialogIdHash()(notification_object_full_id.get_dialog_id()),
+ NotificationObjectIdHash()(notification_object_full_id.get_notification_object_id()));
}
};
-inline StringBuilder &operator<<(StringBuilder &string_builder, NotificationObjectFullId full_notification_object_id) {
- return string_builder << full_notification_object_id.get_notification_object_id() << " in "
- << full_notification_object_id.get_dialog_id();
+inline StringBuilder &operator<<(StringBuilder &string_builder, NotificationObjectFullId notification_object_full_id) {
+ return string_builder << notification_object_full_id.get_notification_object_id() << " in "
+ << notification_object_full_id.get_dialog_id();
}
} // namespace td