Procházet zdrojové kódy

Fixed build problem on Raspberry PI.

yhirose před 10 roky
rodič
revize
5b0c90d3b3
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      httplib.h

+ 2 - 2
httplib.h

@@ -297,11 +297,11 @@ inline bool is_dir(const std::string& s)
 
 inline void read_file(const std::string& path, std::string& out)
 {
-    auto fs = std::ifstream(path, std::ios_base::binary);
+    std::ifstream fs(path, std::ios_base::binary);
     fs.seekg(0, std::ios_base::end);
     auto size = fs.tellg();
     fs.seekg(0);
-   out.resize(size);
+    out.resize(size);
     fs.read(&out[0], size);
 }