From 25c2eec10f64d22ee64a84a6bfb34e7933443c79 Mon Sep 17 00:00:00 2001 From: Zousar Shaker Date: Mon, 29 Nov 2021 23:27:18 -0700 Subject: Address review feedback and fix issue when deploying. --- zenhttp/httpsys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zenhttp/httpsys.cpp') diff --git a/zenhttp/httpsys.cpp b/zenhttp/httpsys.cpp index 0d055f706..e9472e3b8 100644 --- a/zenhttp/httpsys.cpp +++ b/zenhttp/httpsys.cpp @@ -791,7 +791,7 @@ HttpSysServer::InitializeServer(int BasePort) // port for the current user. eg: // netsh http add urlacl url=http://*:1337/ user= - std::vector Hosts { u8"[::1]"sv, u8"localhost"sv, u8"127.0.0.1"sv }; + const std::u8string_view Hosts[] = { u8"[::1]"sv, u8"localhost"sv, u8"127.0.0.1"sv }; for (const std::u8string_view Host : Hosts) { -- cgit v1.2.3