重新设置代码格式

This commit is contained in:
2026-06-25 15:44:25 +08:00
parent 6a87cf52a8
commit 26b5c8a54d
123 changed files with 34632 additions and 35952 deletions
+1 -2
View File
@@ -10,7 +10,6 @@
#include <iostream>
#include <string>
class Crawler {
public:
using Call_back = std::function<void(std::string hex, std::string icaoType,
@@ -33,7 +32,7 @@ public:
)sql");
}
bool check_aircraft_exists(SQLite::Database& db, const std::string& icao) {
bool check_aircraft_exists(SQLite::Database &db, const std::string &icao) {
// 查询是否存在该icao
static auto stmt_check_ = SQLite::Statement(db, R"sql(
SELECT COUNT(*) FROM aircraft_json WHERE icao = ?;