[api] Remove unused reserve from APIServer constructor (#14017)

This commit is contained in:
J. Nick Koston
2026-02-17 16:30:57 +13:00
committed by GitHub
parent 6b4b8cb2f9
commit 4cd3f6c36a
2 changed files with 6 additions and 6 deletions
+1 -5
View File
@@ -28,11 +28,7 @@ static const char *const TAG = "api";
// APIServer
APIServer *global_api_server = nullptr; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
APIServer::APIServer() {
global_api_server = this;
// Pre-allocate shared write buffer
shared_write_buffer_.reserve(64);
}
APIServer::APIServer() { global_api_server = this; }
void APIServer::setup() {
ControllerRegistry::register_controller(this);