mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 22:46:10 +00:00
Replace gsl::not_null<T*> with just not_null<T*>.
This commit is contained in:
@@ -33,7 +33,7 @@ namespace internal {
|
||||
|
||||
class ConfigLoader : public base::enable_weak_from_this {
|
||||
public:
|
||||
ConfigLoader(gsl::not_null<Instance*> instance, RPCDoneHandlerPtr onDone, RPCFailHandlerPtr onFail);
|
||||
ConfigLoader(not_null<Instance*> instance, RPCDoneHandlerPtr onDone, RPCFailHandlerPtr onFail);
|
||||
~ConfigLoader();
|
||||
|
||||
void load();
|
||||
@@ -49,7 +49,7 @@ private:
|
||||
void terminateRequest();
|
||||
void terminateSpecialRequest();
|
||||
|
||||
gsl::not_null<Instance*> _instance;
|
||||
not_null<Instance*> _instance;
|
||||
base::Timer _enumDCTimer;
|
||||
DcId _enumCurrent = 0;
|
||||
mtpRequestId _enumRequest = 0;
|
||||
|
Reference in New Issue
Block a user