Fix warnings.
GitOrigin-RevId: 3d6129e1f99996938316c53b297ced56df14aa23
This commit is contained in:
parent
62fb384ec6
commit
719377a7de
@ -219,7 +219,7 @@ void NotificationManager::init() {
|
|||||||
VLOG(notifications) << "Loaded disable_contact_registered_notifications = "
|
VLOG(notifications) << "Loaded disable_contact_registered_notifications = "
|
||||||
<< disable_contact_registered_notifications_ << " in state " << sync_state;
|
<< disable_contact_registered_notifications_ << " in state " << sync_state;
|
||||||
if (contact_registered_notifications_sync_state_ != SyncState::Completed ||
|
if (contact_registered_notifications_sync_state_ != SyncState::Completed ||
|
||||||
static_cast<bool>(sync_state[1] - '0') != disable_contact_registered_notifications_) {
|
sync_state[1] != static_cast<int32>(disable_contact_registered_notifications_) + '0') {
|
||||||
run_contact_registered_notifications_sync();
|
run_contact_registered_notifications_sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -443,8 +443,8 @@ NotificationManager::NotificationGroups::iterator NotificationManager::get_group
|
|||||||
}
|
}
|
||||||
|
|
||||||
void NotificationManager::delete_group(NotificationGroups::iterator &&group_it) {
|
void NotificationManager::delete_group(NotificationGroups::iterator &&group_it) {
|
||||||
bool is_erased = group_keys_.erase(group_it->first.group_id);
|
auto erased_count = group_keys_.erase(group_it->first.group_id);
|
||||||
CHECK(is_erased);
|
CHECK(erased_count > 0);
|
||||||
groups_.erase(group_it);
|
groups_.erase(group_it);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1662,10 +1662,10 @@ void NotificationManager::on_notification_removed(NotificationId notification_id
|
|||||||
}
|
}
|
||||||
temporary_notification_logevent_ids_.erase(add_it);
|
temporary_notification_logevent_ids_.erase(add_it);
|
||||||
|
|
||||||
bool is_erased_notification = temporary_notifications_.erase(temporary_notification_message_ids_[notification_id]);
|
auto erased_notification_count = temporary_notifications_.erase(temporary_notification_message_ids_[notification_id]);
|
||||||
bool is_erased_message_id = temporary_notification_message_ids_.erase(notification_id);
|
auto erased_message_id_count = temporary_notification_message_ids_.erase(notification_id);
|
||||||
CHECK(is_erased_notification);
|
CHECK(erased_notification_count > 0);
|
||||||
CHECK(is_erased_message_id);
|
CHECK(erased_message_id_count > 0);
|
||||||
|
|
||||||
on_notification_processed(notification_id);
|
on_notification_processed(notification_id);
|
||||||
}
|
}
|
||||||
|
@ -3869,7 +3869,7 @@ int32 StickersManager::get_recent_stickers_hash(const vector<FileId> &sticker_id
|
|||||||
return get_vector_hash(numbers);
|
return get_vector_hash(numbers);
|
||||||
}
|
}
|
||||||
|
|
||||||
FileSourceId StickersManager::get_recent_stickers_file_source_id(bool is_attached) {
|
FileSourceId StickersManager::get_recent_stickers_file_source_id(int is_attached) {
|
||||||
if (!recent_stickers_file_source_id_[is_attached].is_valid()) {
|
if (!recent_stickers_file_source_id_[is_attached].is_valid()) {
|
||||||
recent_stickers_file_source_id_[is_attached] =
|
recent_stickers_file_source_id_[is_attached] =
|
||||||
td_->file_reference_manager_->create_recent_stickers_file_source(is_attached);
|
td_->file_reference_manager_->create_recent_stickers_file_source(is_attached);
|
||||||
|
@ -152,7 +152,7 @@ class StickersManager : public Actor {
|
|||||||
|
|
||||||
void on_get_recent_stickers_failed(bool is_repair, bool is_attached, Status error);
|
void on_get_recent_stickers_failed(bool is_repair, bool is_attached, Status error);
|
||||||
|
|
||||||
FileSourceId get_recent_stickers_file_source_id(bool is_attached);
|
FileSourceId get_recent_stickers_file_source_id(int is_attached);
|
||||||
|
|
||||||
void add_recent_sticker(bool is_attached, const tl_object_ptr<td_api::InputFile> &input_file,
|
void add_recent_sticker(bool is_attached, const tl_object_ptr<td_api::InputFile> &input_file,
|
||||||
Promise<Unit> &&promise);
|
Promise<Unit> &&promise);
|
||||||
|
@ -58,6 +58,7 @@ TEST(SharedPtr, simple) {
|
|||||||
CHECK(*ptr2 == "hello");
|
CHECK(*ptr2 == "hello");
|
||||||
#if TD_CLANG
|
#if TD_CLANG
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
|
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||||||
#pragma clang diagnostic ignored "-Wself-assign-overloaded"
|
#pragma clang diagnostic ignored "-Wself-assign-overloaded"
|
||||||
#endif
|
#endif
|
||||||
ptr2 = ptr2;
|
ptr2 = ptr2;
|
||||||
|
Loading…
Reference in New Issue
Block a user