Răsfoiți Sursa

filesystem: Use std::string's empty() function instead of comparing against a literal

This is simply a basic value check as opposed to potentially doing
string based operations (unlikely, but still, avoiding it is free).
Lioncash 8 ani în urmă
părinte
comite
abbf038191
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/core/hle/service/filesystem/filesystem.cpp

+ 1 - 1
src/core/hle/service/filesystem/filesystem.cpp

@@ -23,7 +23,7 @@ constexpr u64 EMULATED_SD_REPORTED_SIZE = 32000000000;
 
 
 static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base,
 static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base,
                                                        const std::string& dir_name) {
                                                        const std::string& dir_name) {
-    if (dir_name == "." || dir_name == "" || dir_name == "/" || dir_name == "\\")
+    if (dir_name.empty() || dir_name == "." || dir_name == "/" || dir_name == "\\")
         return base;
         return base;
 
 
     return base->GetDirectoryRelative(dir_name);
     return base->GetDirectoryRelative(dir_name);