Răsfoiți Sursa

Add another missing std::move for _base_dirs vector (#2314)

Aaron Gokaslan 1 lună în urmă
părinte
comite
25688258ad
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      httplib.h

+ 1 - 1
httplib.h

@@ -8540,7 +8540,7 @@ inline bool Server::set_mount_point(const std::string &mount_point,
   if (stat.is_dir()) {
     std::string mnt = !mount_point.empty() ? mount_point : "/";
     if (!mnt.empty() && mnt[0] == '/') {
-      base_dirs_.push_back({mnt, dir, std::move(headers)});
+      base_dirs_.push_back({std::move(mnt), dir, std::move(headers)});
       return true;
     }
   }