Răsfoiți Sursa

common/file_util: Make IOFile's WriteString take a std::string_view

We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
Lioncash 7 ani în urmă
părinte
comite
8cd3d9be26
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/common/file_util.h

+ 2 - 2
src/common/file_util.h

@@ -257,8 +257,8 @@ public:
         return WriteArray(&object, 1);
     }
 
-    std::size_t WriteString(const std::string& str) {
-        return WriteArray(str.c_str(), str.length());
+    std::size_t WriteString(std::string_view str) {
+        return WriteArray(str.data(), str.length());
     }
 
     bool IsOpen() const {