Fix initialization order

This commit is contained in:
Yves
2025-03-11 12:44:24 +01:00
parent 3295b7ab4c
commit 215ee05ef1

View File

@@ -9,7 +9,7 @@
namespace duckdb { namespace duckdb {
namespace ui { namespace ui {
Watcher::Watcher(HttpServer &_server) : server(_server), should_run(false) {} Watcher::Watcher(HttpServer &_server) : should_run(false), server(_server) {}
bool WasCatalogUpdated(DatabaseInstance &db, Connection &connection, bool WasCatalogUpdated(DatabaseInstance &db, Connection &connection,
CatalogState &last_state) { CatalogState &last_state) {