mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 14:38:15 +00:00
Using standard library instead of std_ namespace.
Currently tested only in VS2015.
This commit is contained in:
@@ -484,7 +484,7 @@ void Manager::Impl::clearNotification(PeerId peerId, MsgId msgId) {
|
||||
showNextNotification();
|
||||
}
|
||||
|
||||
Manager::Manager() : _impl(std_::make_unique<Impl>(Impl::Type::Rounded)) {
|
||||
Manager::Manager() : _impl(std::make_unique<Impl>(Impl::Type::Rounded)) {
|
||||
}
|
||||
|
||||
bool Manager::init() {
|
||||
|
@@ -56,7 +56,7 @@ protected:
|
||||
private:
|
||||
class Impl;
|
||||
friend class Impl;
|
||||
std_::unique_ptr<Impl> _impl;
|
||||
std::unique_ptr<Impl> _impl;
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user