I tried the same example https://github.com/tdlib/td/blob/master/example/cpp/td_example.cpp but below lambda section didn't work in my building at all.
if (o->get_id() == td_api::error::ID) {
return;
}
auto chat = td::move_tl_object_as<td_api::chat>(o);
offset_order_ = chat->order_;
offset_chat_id_ = chat->id_;
update_chats_ = true;
Had you the same problem? How did you fix it?