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,
|
||||
int32 scheduler_id);
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
@ -51,7 +51,7 @@ class TempAuthKeyWatchdog;
|
||||
class TopDialogManager;
|
||||
class UpdatesManager;
|
||||
class WebPagesManager;
|
||||
}; // 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,
|
||||
int32 scheduler_id);
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
@ -75,4 +75,4 @@ class AuthDataShared {
|
||||
std::shared_ptr<Guard> guard);
|
||||
};
|
||||
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
@ -103,4 +103,4 @@ inline StringBuilder &operator<<(StringBuilder &sb, const DcId &dc_id) {
|
||||
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);
|
||||
}
|
||||
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
@ -17,4 +17,4 @@ using BinlogPmcBase = BinlogKeyValue<ConcurrentBinlog>;
|
||||
using BinlogPmc = std::shared_ptr<BinlogPmcBase>;
|
||||
using BinlogPmcPtr = BinlogPmcBase *;
|
||||
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
@ -34,7 +34,7 @@ namespace detail {
|
||||
class BinlogReader;
|
||||
class BinlogEventsProcessor;
|
||||
class BinlogEventsBuffer;
|
||||
}; // namespace detail
|
||||
} // namespace detail
|
||||
|
||||
class Binlog {
|
||||
public:
|
||||
|
@ -14,6 +14,7 @@ struct sqlite3;
|
||||
|
||||
namespace td {
|
||||
namespace detail {
|
||||
|
||||
class RawSqliteDb {
|
||||
public:
|
||||
RawSqliteDb(sqlite3 *db, std::string path) : db_(db), path_(std::move(path)) {
|
||||
@ -47,5 +48,6 @@ class RawSqliteDb {
|
||||
sqlite3 *db_;
|
||||
std::string path_;
|
||||
};
|
||||
}; // namespace detail
|
||||
|
||||
} // namespace detail
|
||||
} // namespace td
|
||||
|
@ -46,7 +46,7 @@ struct Type {
|
||||
|
||||
// type == Vector
|
||||
const Type *vector_value_type{nullptr};
|
||||
}; // namespace simple
|
||||
};
|
||||
|
||||
struct Arg {
|
||||
const Type *type;
|
||||
|
@ -836,4 +836,4 @@ class Tdclient_login : public td::Test {
|
||||
};
|
||||
//Tdclient_login Tdclient_login("Tdclient_login");
|
||||
|
||||
}; // namespace td
|
||||
} // namespace td
|
||||
|
Loading…
Reference in New Issue
Block a user