Преглед на файлове

Changed to use `const std::string &` as much as possible instead of `const char *` (#1331)

* Changed to use `const std::string &` as much as possible instead of `const char *`

* Fix problems on Windows
yhirose преди 3 години
родител
ревизия
f0eb55b327
променени са 2 файла, в които са добавени 335 реда и са изтрити 305 реда
  1. 334 304
      httplib.h
  2. 1 1
      test/test.cc

Файловите разлики са ограничени, защото са твърде много
+ 334 - 304
httplib.h


+ 1 - 1
test/test.cc

@@ -4180,7 +4180,7 @@ protected:
       res.set_content("Hello World!", "text/plain");
     });
 
-    t_ = thread([&]() { ASSERT_TRUE(svr_.listen(nullptr, PORT, AI_PASSIVE)); });
+    t_ = thread([&]() { ASSERT_TRUE(svr_.listen(std::string(), PORT, AI_PASSIVE)); });
 
     while (!svr_.is_running()) {
       std::this_thread::sleep_for(std::chrono::milliseconds(1));

Някои файлове не бяха показани, защото твърде много файлове са промени