aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/servers/httpmulti.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-03-06 17:27:59 +0100
committerStefan Boberg <[email protected]>2025-03-06 17:27:59 +0100
commit66e5d1f4e288e0c32f854ebe3b63584b42b83554 (patch)
treed67e9d358419b5baccd429d54988414e0d7cd7a6 /src/zenhttp/servers/httpmulti.h
parentreduced memory churn using fixed_xxx containers (#236) (diff)
downloadzen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.tar.xz
zen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.zip
switched std::vector -> eastl::vector
Diffstat (limited to 'src/zenhttp/servers/httpmulti.h')
-rw-r--r--src/zenhttp/servers/httpmulti.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zenhttp/servers/httpmulti.h b/src/zenhttp/servers/httpmulti.h
index 53cf57568..0494598ce 100644
--- a/src/zenhttp/servers/httpmulti.h
+++ b/src/zenhttp/servers/httpmulti.h
@@ -24,9 +24,9 @@ public:
void AddServer(Ref<HttpServer> Server);
private:
- bool m_IsInitialized = false;
- Event m_ShutdownEvent;
- std::vector<Ref<HttpServer>> m_Servers;
+ bool m_IsInitialized = false;
+ Event m_ShutdownEvent;
+ eastl::vector<Ref<HttpServer>> m_Servers;
};
} // namespace zen