Selaa lähdekoodia

Fixed FilePathSeparator class

- fixed warning
Patrick 4 vuotta sitten
vanhempi
commit
31ba8ed366
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      source/io/FilePathSeparator.hpp

+ 1 - 1
source/io/FilePathSeparator.hpp

@@ -24,7 +24,7 @@ namespace ls_std {
       }
 
       static char getOperatingSystemSpecificSeparator() {
-        char separator {};
+        char separator;
 
         #ifdef _WIN32
           separator = ls_std::FilePathSeparator::getUnixFilePathSeparator();