Remove unnecessary semicolons after namespace end.
GitOrigin-RevId: bf290001b072fd390fe2cada06722a3b90309cca
This commit is contained in:
parent
46ebd1b240
commit
f25bcd8d70
@ -65,4 +65,4 @@ std::shared_ptr<DialogDbSyncSafeInterface> create_dialog_db_sync(
|
|||||||
|
|
||||||
std::shared_ptr<DialogDbAsyncInterface> create_dialog_db_async(std::shared_ptr<DialogDbSyncSafeInterface> sync_db,
|
std::shared_ptr<DialogDbAsyncInterface> create_dialog_db_async(std::shared_ptr<DialogDbSyncSafeInterface> sync_db,
|
||||||
int32 scheduler_id);
|
int32 scheduler_id);
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -51,7 +51,7 @@ class TempAuthKeyWatchdog;
|
|||||||
class TopDialogManager;
|
class TopDialogManager;
|
||||||
class UpdatesManager;
|
class UpdatesManager;
|
||||||
class WebPagesManager;
|
class WebPagesManager;
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
|
||||||
namespace td {
|
namespace td {
|
||||||
|
|
||||||
|
@ -166,4 +166,4 @@ std::shared_ptr<MessagesDbSyncSafeInterface> create_messages_db_sync(
|
|||||||
|
|
||||||
std::shared_ptr<MessagesDbAsyncInterface> create_messages_db_async(std::shared_ptr<MessagesDbSyncSafeInterface> sync_db,
|
std::shared_ptr<MessagesDbAsyncInterface> create_messages_db_async(std::shared_ptr<MessagesDbSyncSafeInterface> sync_db,
|
||||||
int32 scheduler_id);
|
int32 scheduler_id);
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -75,4 +75,4 @@ class AuthDataShared {
|
|||||||
std::shared_ptr<Guard> guard);
|
std::shared_ptr<Guard> guard);
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -103,4 +103,4 @@ inline StringBuilder &operator<<(StringBuilder &sb, const DcId &dc_id) {
|
|||||||
return sb;
|
return sb;
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -241,4 +241,4 @@ inline StringBuilder &operator<<(StringBuilder &sb, const DcOptions &dc_options)
|
|||||||
return sb << "DcOptions" << format::as_array(dc_options.dc_options);
|
return sb << "DcOptions" << format::as_array(dc_options.dc_options);
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -17,4 +17,4 @@ using BinlogPmcBase = BinlogKeyValue<ConcurrentBinlog>;
|
|||||||
using BinlogPmc = std::shared_ptr<BinlogPmcBase>;
|
using BinlogPmc = std::shared_ptr<BinlogPmcBase>;
|
||||||
using BinlogPmcPtr = BinlogPmcBase *;
|
using BinlogPmcPtr = BinlogPmcBase *;
|
||||||
|
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
@ -34,7 +34,7 @@ namespace detail {
|
|||||||
class BinlogReader;
|
class BinlogReader;
|
||||||
class BinlogEventsProcessor;
|
class BinlogEventsProcessor;
|
||||||
class BinlogEventsBuffer;
|
class BinlogEventsBuffer;
|
||||||
}; // namespace detail
|
} // namespace detail
|
||||||
|
|
||||||
class Binlog {
|
class Binlog {
|
||||||
public:
|
public:
|
||||||
|
@ -14,6 +14,7 @@ struct sqlite3;
|
|||||||
|
|
||||||
namespace td {
|
namespace td {
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
class RawSqliteDb {
|
class RawSqliteDb {
|
||||||
public:
|
public:
|
||||||
RawSqliteDb(sqlite3 *db, std::string path) : db_(db), path_(std::move(path)) {
|
RawSqliteDb(sqlite3 *db, std::string path) : db_(db), path_(std::move(path)) {
|
||||||
@ -47,5 +48,6 @@ class RawSqliteDb {
|
|||||||
sqlite3 *db_;
|
sqlite3 *db_;
|
||||||
std::string path_;
|
std::string path_;
|
||||||
};
|
};
|
||||||
}; // namespace detail
|
|
||||||
|
} // namespace detail
|
||||||
} // namespace td
|
} // namespace td
|
||||||
|
@ -46,7 +46,7 @@ struct Type {
|
|||||||
|
|
||||||
// type == Vector
|
// type == Vector
|
||||||
const Type *vector_value_type{nullptr};
|
const Type *vector_value_type{nullptr};
|
||||||
}; // namespace simple
|
};
|
||||||
|
|
||||||
struct Arg {
|
struct Arg {
|
||||||
const Type *type;
|
const Type *type;
|
||||||
|
@ -836,4 +836,4 @@ class Tdclient_login : public td::Test {
|
|||||||
};
|
};
|
||||||
//Tdclient_login Tdclient_login("Tdclient_login");
|
//Tdclient_login Tdclient_login("Tdclient_login");
|
||||||
|
|
||||||
}; // namespace td
|
} // namespace td
|
||||||
|
Reference in New Issue
Block a user