aboutsummaryrefslogtreecommitdiffhomepage
path: root/td/telegram/VideoNotesManager.h
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2018-09-27 04:19:03 +0300
committerlevlam <levlam@telegram.org>2018-09-27 04:19:03 +0300
commitf948956bf789926e8a1f0456d93c8786d78eb2d7 (patch)
tree2266679cf16dbccec69091c7de9b0ea97ebc1ae0 /td/telegram/VideoNotesManager.h
parent83be04a5f48afea594738a2d758f96b54aa3ae07 (diff)
Use td::unique_ptr instead of std::unique_ptr whenever possible.
GitOrigin-RevId: 424beb72dc62efdefdbffb75f1036ba9417f84cb
Diffstat (limited to 'td/telegram/VideoNotesManager.h')
-rw-r--r--td/telegram/VideoNotesManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/td/telegram/VideoNotesManager.h b/td/telegram/VideoNotesManager.h
index f5babe801..6f8c7d915 100644
--- a/td/telegram/VideoNotesManager.h
+++ b/td/telegram/VideoNotesManager.h
@@ -70,7 +70,7 @@ class VideoNotesManager {
const VideoNote *get_video_note(FileId file_id) const;
- FileId on_get_video_note(std::unique_ptr<VideoNote> new_video_note, bool replace);
+ FileId on_get_video_note(unique_ptr<VideoNote> new_video_note, bool replace);
Td *td_;
std::unordered_map<FileId, unique_ptr<VideoNote>, FileIdHash> video_notes_;